From 80990950a0618aa4d0af0ad2ca8ad15a9d2033c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Fri, 23 Dec 2022 15:28:01 +0100 Subject: [PATCH] fix: clear /tmp on boot --- hosts/neodymium/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/neodymium/configuration.nix b/hosts/neodymium/configuration.nix index eff805e..c218105 100644 --- a/hosts/neodymium/configuration.nix +++ b/hosts/neodymium/configuration.nix @@ -23,6 +23,9 @@ in { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # clean /tmp at each boot + boot.cleanTmpDir = true; + # hardware hardware = { enableRedistributableFirmware = true;