cleanup
This commit is contained in:
@@ -11,8 +11,8 @@ in
|
||||
# Enable nix flakes and nix-command tools
|
||||
nix = {
|
||||
settings = {
|
||||
warn-dirty = false;
|
||||
experimental-features = [
|
||||
warn-dirty = lib.mkForce false;
|
||||
experimental-features = lib.mkForce [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
@@ -20,7 +20,7 @@ in
|
||||
|
||||
# Garbage collect automatically every week
|
||||
gc.automatic = lib.mkDefault true;
|
||||
gc.options = "--delete-older-than 30d";
|
||||
gc.options = lib.mkDefault "--delete-older-than 30d";
|
||||
|
||||
optimise.automatic = lib.mkDefault true;
|
||||
};
|
||||
@@ -38,7 +38,7 @@ in
|
||||
enableAllFirmware = lib.mkForce true;
|
||||
|
||||
# Disable pulse audio in favor of pipewire
|
||||
pulseaudio.enable = false;
|
||||
pulseaudio.enable = lib.mkDefault false;
|
||||
};
|
||||
|
||||
# Services configs
|
||||
|
||||
Reference in New Issue
Block a user