dots/hosts/luna/modules/nix.nix

19 lines
309 B
Nix
Raw Normal View History

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