dotfiles/common/systemModules/nix.nix
2025-05-23 23:50:57 -04:00

19 lines
310 B
Nix

{
config,
unstable,
inputs,
...
}:
{
nix = {
settings = {
extra-platforms = config.boot.binfmt.emulatedSystems;
experimental-features = [
"nix-command"
"flakes"
];
};
package = unstable.nix;
nixPath = [ "nixpkgs=${inputs.nixpkgs-unstable}" ];
};
}