diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-21 00:23:09 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-21 01:28:11 +0200 |
commit | aa94424db16cd977c3ffc2c2f7223839f4d206b5 (patch) | |
tree | 097cdb97e1e13878b2eec7d76dcd1c4c86421c62 /hosts/configuration.nix | |
parent | Remove default packages (diff) | |
download | nixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.tar.gz nixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.tar.bz2 nixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.zip |
Set non persistance as the default
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r-- | hosts/configuration.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 9862007..84cb8f8 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -1,6 +1,8 @@ { secrets, lib, pkgs, config, hostname, inputs, user, timezone, ... }: { imports = [ + "${inputs.impermanence}/nixos.nix" + ../modules/doas ../modules/pipewire ../modules/xorg @@ -140,6 +142,17 @@ }; }; + environment.persistence."/persist" = { + directories = [ + "/var/log" + "/var/lib" + ]; + files = [ + "/etc/machine-id" + "/etc/nix/id_rsa" + ]; + }; + nix = { settings.auto-optimise-store = true; gc = { |