cornflake/system/core/nix.nix
2025-01-30 21:55:28 +09:00

18 lines
269 B
Nix

{
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
nixpkgs.config.allowUnfree = true;
}