diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/system/modules/common.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/users/grfn/system/system/modules/common.nix b/users/grfn/system/system/modules/common.nix index fb0e377d9fe2..fb3a976f6e5f 100644 --- a/users/grfn/system/system/modules/common.nix +++ b/users/grfn/system/system/modules/common.nix @@ -9,8 +9,11 @@ in with lib; { - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot = { + loader.systemd-boot.enable = true; + loader.efi.canTouchEfiVariables = true; + cleanTmpDir = true; + }; networking.useDHCP = false; networking.networkmanager.enable = true; |