flake/nixos/flake-modules/impermanence.nix

25 lines
802 B
Nix
Raw Normal View History

{inputs, ...}: {
imports = [inputs.impermanence.nixosModules.impermanence];
2023-10-12 14:21:14 +00:00
# this folder is where the files will be stored (don't put it in tmpfs)
environment.persistence."/nix/persist/system" = {
directories = [
# bind mounted from /nix/persist/system/etc/nixos to /etc/nixos
2023-10-12 15:13:05 +00:00
"/var/log"
"/var/lib"
2023-10-12 14:21:14 +00:00
#"/etc/NetworkManager/system-connections"
"/etc/clash-meta" # clash-meta
"/etc/secureboot" # sbctl, lanzaboote, etc
];
files = [
# NOTE: if you persist /var/log directory, you should persist /etc/machine-id as well
# otherwise it will affect disk usage of log service
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_rsa_key.pub"
];
};
}