From a55e68ff9eb5060347bd2bba1b4d04b890a12757 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Mon, 5 Sep 2022 11:17:01 +0200 Subject: [PATCH] fix(tmp): empty /tmp on boot (regression) This is a config that was lost during the framework config migration. This commit restores the config. --- nixos/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index d8b560e..61b03fe 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -18,6 +18,8 @@ boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.cleanTmpDir = true; + networking.hostName = "pierre"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.