blob: c07ec9227ca227abfd0994d58d1501b724c83898 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Configuration for persistent (non-home) data.
{ depot, pkgs, lib, ... }:
{
imports = [
"${depot.third_party.impermanence}/nixos.nix"
];
environment.persistence."/persist" = {
directories = [
"/etc/NetworkManager/system-connections"
"/etc/mullvad-vpn"
"/var/cache/mullvad-vpn"
"/var/lib/bluetooth"
"/var/lib/systemd/coredump"
"/var/lib/tailscale"
"/var/log"
];
files = [
"/etc/machine-id"
];
};
}
|