This commit is contained in:
Lilith 2025-02-27 01:27:54 +01:00
parent 836a7e0e2c
commit c4eed0e32f
Signed by: lilith
GPG key ID: 8712A0F317C37175
9 changed files with 205 additions and 0 deletions

15
system/nix.nix Normal file
View file

@ -0,0 +1,15 @@
{...}: {
nix = {
gc = {
automatic = true;
dates = "05:30";
options = "--delete-older-than 7d";
};
settings = {
keep-outputs = true;
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = ["root" "@wheel"];
};
};
}