From 5e0aac93436d1f93eaf2d6e35c12ec904a5ced13 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sun, 1 Oct 2023 11:39:13 +0200 Subject: [PATCH] feat: tmp on tmpfs --- hosts/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 8b62bcc..3eb4492 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -18,6 +18,11 @@ [(import ../modules/desktop)] ++ (import ../modules/services); + boot.tmp = { + cleanOnBoot = true; + useTmpfs = true; + }; + hardware.pulseaudio.enable = false; users.users.${user} = { # System User -- 2.48.1