25 lines
498 B
Nix
25 lines
498 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
environment.persistence."/persist" = {
|
||
|
hideMounts = true;
|
||
|
directories = [
|
||
|
"/etc/nixos"
|
||
|
"/etc/secureboot"
|
||
|
|
||
|
"/var/log"
|
||
|
"/var/lib/bluetooth"
|
||
|
"/var/lib/mpd"
|
||
|
"/var/lib/nixos"
|
||
|
"/var/lib/fail2ban"
|
||
|
"/var/lib/systemd/coredump"
|
||
|
];
|
||
|
files = [
|
||
|
"/etc/machine-id"
|
||
|
"/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"
|
||
|
];
|
||
|
};
|
||
|
}
|