summary refs log tree commit diff stats
path: root/system/disks/impermanence.nix
blob: 6da011ac58fbae02ffc3c363ab9830e2331c7801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{...}: {
  environment.persistence = {
    "/srv" = {
      hideMounts = true;
      directories = [
        "/etc/nixos"
        "/var/log"
        "/var/lib/postgresql"
      ];
      files = [
        "/etc/machine-id"
      ];
    };
  };
}