From 101f34d89130422a52233e45a6cc172e5b755d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Tue, 1 Oct 2024 23:59:35 +0200 Subject: [PATCH] Clean tmp on boot --- hosts/Common/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/Common/default.nix b/hosts/Common/default.nix index 003f9ab..7d0c720 100644 --- a/hosts/Common/default.nix +++ b/hosts/Common/default.nix @@ -12,6 +12,7 @@ systemd.extraConfig = "DefaultTimeoutStopSec=10s"; systemd.services.systemd-user-sessions.enable = false; boot.kernelPackages = pkgs.linuxPackages_latest; + boot.tmp.cleanOnBoot = true; services.thermald.enable = true; services.pcscd.enable = true;