nix/system/Nix.nix
2024-11-06 01:07:30 +03:00

14 lines
255 B
Nix

{ ... }: {
nixpkgs.config.allowUnfree = true;
nix.settings = {
auto-optimise-store = true;
keep-derivations = true;
keep-outputs = true;
min-free = 1 * 1000 * 1000 * 1000;
experimental-features = [
"flakes"
"nix-command "
];
};
}