From 638f4a777493e2ae0de926997852e8e5bf4762e7 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 17 Apr 2023 21:25:15 +0200 Subject: [PATCH] modules: system: boot: rename 'tmp' options --- modules/system/boot/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/system/boot/default.nix b/modules/system/boot/default.nix index 0fed267..3d8495e 100644 --- a/modules/system/boot/default.nix +++ b/modules/system/boot/default.nix @@ -13,9 +13,11 @@ in config = { boot = { - cleanTmpDir = cfg.tmp.clean; + tmp = { + cleanOnBoot = cfg.tmp.clean; - tmpOnTmpfs = cfg.tmp.tmpfs; + useTmpfs = cfg.tmp.tmpfs; + }; }; }; }