dots/hosts/luna/modules/nix.nix
Price Hiller f4024113ad
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 33s
feat(nix): enable experimental pipe-operators
2024-11-06 16:09:52 -06:00

19 lines
333 B
Nix
Executable File

{ ... }:
{
nix = {
settings = {
experimental-features = [
"pipe-operators"
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
gc = {
automatic = true;
options = "--delete-older-than 7d";
dates = "daily";
};
};
}