From 76fc25f2e8b6c5100b9349275a59aa246c426e06 Mon Sep 17 00:00:00 2001 From: Vivian Roest Date: Wed, 19 Apr 2023 09:56:53 +0200 Subject: [PATCH] update cleanOnBoot param --- nixos/common/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/common/common.nix b/nixos/common/common.nix index b9d1f14e..56327dca 100644 --- a/nixos/common/common.nix +++ b/nixos/common/common.nix @@ -5,7 +5,7 @@ ]; # Clean /tmp on boot. - boot.cleanTmpDir = true; + boot.tmp.cleanOnBoot = true; # Set your time zone. time.timeZone = lib.mkDefault "Europe/Amsterdam";