From a125ee3d1cd490c5a4ace180017c149c3c10e04b Mon Sep 17 00:00:00 2001 From: noe Date: Fri, 31 May 2024 01:41:13 -0400 Subject: [PATCH] use boot.tmp.cleanOnBoot --- modules/pihole-container.factory.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pihole-container.factory.nix b/modules/pihole-container.factory.nix index 3c2ff59..4518365 100644 --- a/modules/pihole-container.factory.nix +++ b/modules/pihole-container.factory.nix @@ -7,7 +7,7 @@ cfg = config.services.pihole; hostUserCfg = config.users.users.${cfg.hostConfig.user}; - tmpDirIsResetAtBoot = config.boot.cleanTmpDir || config.boot.tmpOnTmpfs; + tmpDirIsResetAtBoot = config.boot.tmp.cleanOnBoot || config.boot.tmpOnTmpfs; systemTimeZone = config.time.timeZone; defaultPiholeVolumesDir = "${config.users.users.${cfg.hostConfig.user}.home}/pihole-volumes";