21 lines
433 B
Nix
21 lines
433 B
Nix
|
{ ... }: {
|
||
|
# restrict nix command to sudoers
|
||
|
nix.settings.allowed-users = [ "@wheel" ];
|
||
|
|
||
|
# experimental features
|
||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
|
|
||
|
# optimizations
|
||
|
nix.settings.auto-optimise-store = true;
|
||
|
|
||
|
# garbage collection
|
||
|
nix.gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 30d";
|
||
|
};
|
||
|
|
||
|
# enable unfree
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
}
|