about summary refs log tree commit diff stats
path: root/system/impermanence/default.nix
blob: 337ab9aa8092ba39c32947d47462063a1c8aa1a4 (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
{impermanence, ...}: {
  imports = [
    # impermanence.nixosModules.impermanence
    "${impermanence}/nixos.nix"
  ];

  environment.persistence = {
    "/srv" = {
      hideMounts = true;
      directories = [
        "/etc/nixos"
        "/var/log"
        # TODO this needs to be checked
        #"/var/lib/bluetooth"
        #"/var/lib/nixos"
        #"/var/lib/systemd/coredump"
      ];
      files = [
        "/etc/machine-id"
      ];
    };
  };
}