diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-08-04 08:33:10 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-08-04 08:33:10 -0400 |
| commit | 94b2ac5ddc4a3c36d528a05ebeb8bd79e485ea56 (patch) | |
| tree | dbead36acf51e0b08b32981e872c7956ac8f7bc5 /modules | |
| parent | 2276c0e3bcd8c3e6a6e2a83d878cbf3305624cd8 (diff) | |
clean /tmp on boot
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/core.nix | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/modules/core.nix b/modules/core.nix index 99a4a30..eeed242 100644 --- a/modules/core.nix +++ b/modules/core.nix @@ -5,15 +5,19 @@ ... }: { - boot.loader = { - efi.canTouchEfiVariables = true; - systemd-boot = { - enable = true; - editor = false; - memtest86.enable = true; - }; + boot = { + loader = { + efi.canTouchEfiVariables = true; + systemd-boot = { + enable = true; + editor = false; + memtest86.enable = true; + }; + + timeout = 1; + }; - timeout = 1; + tmp.cleanOnBoot = true; }; documentation.dev.enable = true; |
