nix/system/Nix.nix

14 lines
255 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
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 "
];
};
}