Update renamed attributes

This commit is contained in:
Erwin Boskma 2022-02-02 21:26:39 +01:00
parent c308ba5af5
commit dc6e201a3e
Signed by: erwin
GPG key ID: 270B20D17394F7E5
2 changed files with 5 additions and 3 deletions

View file

@ -19,7 +19,10 @@ in
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
autoOptimiseStore = true; settings = {
auto-optimise-store = true;
allowed-users = [ "root" ];
};
gc = { gc = {
automatic = true; automatic = true;
@ -27,7 +30,6 @@ in
options = "--delete-older-than=30d"; options = "--delete-older-than=30d";
}; };
allowedUsers = [ "root" ];
}; };
}; };
} }

View file

@ -13,5 +13,5 @@
]; ];
}; };
nix.allowedUsers = [ "erwin" ]; nix.settings.allowed-users = [ "erwin" ];
} }