about summary refs log tree commit diff
path: root/modules
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 /modules
parent8a049480ba427f2cfac6db2392f06c978adbfe95 (diff)
treewide: address rename of boot.cleanTmpDir option
cc @Profpatsch @aszlig
Diffstat (limited to 'modules')
-rw-r--r--modules/user/aszlig/profiles/managed.nix2
-rw-r--r--modules/user/aszlig/profiles/workstation/default.nix2
2 files changed, 2 insertions, 2 deletions
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;