about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2022-07-21T03·45-0400
committerclbot <clbot@tvl.fyi>2022-07-21T03·50+0000
commit3e17c1613d81f4d6ea412f344fecc3deff886c21 (patch)
tree2c9c1ff555ff3b5f2d2d9b4bcfe3aa3218b14afa
parent21dbfd0e8bcc5ca8f29d5ea09d1d0d5029c61f5e (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
-rw-r--r--users/grfn/system/system/modules/common.nix7
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 fb0e377d9f..fb3a976f6e 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;