about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-05-14 14:47:03 +0200
committersternenseemann <sternenseemann@systemli.org>2023-05-14 14:47:03 +0200
commit98555314476075516a21eebec4961b0526db9bd8 (patch)
tree6a74b3e685338d37885af37b8119ef686ed66727
parent8a049480ba427f2cfac6db2392f06c978adbfe95 (diff)
treewide: address rename of boot.cleanTmpDir option
cc @Profpatsch @aszlig
-rw-r--r--machines/profpatsch/base.nix2
-rw-r--r--machines/sternenseemann/base.nix2
-rw-r--r--modules/user/aszlig/profiles/managed.nix2
-rw-r--r--modules/user/aszlig/profiles/workstation/default.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/machines/profpatsch/base.nix b/machines/profpatsch/base.nix
index c6fcf130..e0b2fd7d 100644
--- a/machines/profpatsch/base.nix
+++ b/machines/profpatsch/base.nix
@@ -15,7 +15,7 @@ in
     nix.settings.max-jobs = "auto";
 
     # /tmp should never be depended on
-    boot.cleanTmpDir = true;
+    boot.tmp.cleanOnBoot = true;
 
     # Setting it to UTC explicitely makes it impossible to override at runtime
     time.timeZone = lib.mkDefault "UTC";
diff --git a/machines/sternenseemann/base.nix b/machines/sternenseemann/base.nix
index d74a061a..ac555e24 100644
--- a/machines/sternenseemann/base.nix
+++ b/machines/sternenseemann/base.nix
@@ -14,7 +14,7 @@ in {
   ];
 
   config = {
-    boot.cleanTmpDir = true;
+    boot.tmp.cleanOnBoot = true;
 
     nix = {
       # new --show-trace is so noisy, I wouldn't be able to debug something to save my life
diff --git a/modules/user/aszlig/profiles/managed.nix b/modules/user/aszlig/profiles/managed.nix
index afb19a2f..dbabcec8 100644
--- a/modules/user/aszlig/profiles/managed.nix
+++ b/modules/user/aszlig/profiles/managed.nix
@@ -20,7 +20,7 @@ in {
   config = mkIf cfg.enable {
     vuizvui.system.kernel.bfq.enable = true;
 
-    boot.cleanTmpDir = true;
+    boot.tmp.cleanOnBoot = true;
     boot.loader.systemd-boot.enable = true;
     boot.loader.efi.canTouchEfiVariables = true;
 
diff --git a/modules/user/aszlig/profiles/workstation/default.nix b/modules/user/aszlig/profiles/workstation/default.nix
index bb4785d6..fb15bc13 100644
--- a/modules/user/aszlig/profiles/workstation/default.nix
+++ b/modules/user/aszlig/profiles/workstation/default.nix
@@ -12,7 +12,7 @@ in {
     vuizvui.user.aszlig.profiles.base.enable = true;
 
     boot.kernelParams = [ "panic=1800" ];
-    boot.cleanTmpDir = true;
+    boot.tmp.cleanOnBoot = true;
 
     # Allow sync, sak and unraw
     boot.kernel.sysctl."kernel.sysrq" = 20;