diff options
author | Griffin Smith <root@gws.fyi> | 2022-07-21T03·45-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-07-21T03·50+0000 |
commit | 3e17c1613d81f4d6ea412f344fecc3deff886c21 (patch) | |
tree | 2c9c1ff555ff3b5f2d2d9b4bcfe3aa3218b14afa /users/grfn/system | |
parent | 21dbfd0e8bcc5ca8f29d5ea09d1d0d5029c61f5e (diff) |
feat(grfn/system): Enable boot.cleanTmpDir r/4310
Change-Id: Idb171cd4baa4c6e54edb8d906559778d005bddb3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5966 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users/grfn/system')
-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; |