From f85d18769f7ff759e607299b9f95fff7701ddf3e Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 1 Sep 2024 03:29:40 +0200 Subject: [PATCH] common: clean `/tmp` on boot by default --- base/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/base/default.nix b/base/default.nix index 2fb413f..bbc0c9a 100644 --- a/base/default.nix +++ b/base/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: { imports = [ @@ -19,6 +19,8 @@ ./services/thermald.nix ]; + boot.tmp.cleanOnBoot = lib.mkDefault true; + time.timeZone = "Europe/Oslo"; i18n.defaultLocale = "en_US.UTF-8";