2024-01-21 21:03:57 +08:00
|
|
|
{ inputs, ... }:
|
2024-01-14 06:29:32 +08:00
|
|
|
|
|
|
|
{
|
2024-01-21 21:03:57 +08:00
|
|
|
imports = [
|
|
|
|
inputs.impermanence.nixosModules.impermanence
|
|
|
|
];
|
|
|
|
|
2024-01-14 06:29:32 +08:00
|
|
|
# Files and directories we with to keep between reboots
|
|
|
|
environment.persistence."/persist" = {
|
|
|
|
hideMounts = true;
|
|
|
|
directories = [
|
|
|
|
"/var/log"
|
|
|
|
"/var/lib/bluetooth"
|
|
|
|
"/var/lib/nixos"
|
|
|
|
"/var/lib/systemd/coredump"
|
|
|
|
"/etc/NetworkManager/system-connections"
|
|
|
|
];
|
|
|
|
files = [
|
|
|
|
"/etc/machine-id"
|
|
|
|
"/etc/ssh/ssh_host_rsa_key"
|
|
|
|
"/etc/ssh/ssh_host_rsa_key.pub"
|
|
|
|
"/etc/ssh/ssh_host_ed25519_key"
|
|
|
|
"/etc/ssh/ssh_host_ed25519_key.pub"
|
|
|
|
];
|
|
|
|
};
|
2024-01-21 21:03:57 +08:00
|
|
|
programs.fuse.userAllowOther = true;
|
2024-01-14 06:29:32 +08:00
|
|
|
}
|