about summary refs log tree commit diff stats
path: root/system/impermanence/default.nix
blob: 71b023ffd2caa2108092eba24828d25dd1f935ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{...}: {
  # needed for the hm impermanence config
  programs.fuse.userAllowOther = true;

  environment.persistence = {
    "/srv" = {
      hideMounts = true;
      directories = [
        "/etc/nixos"
        "/var/log"
        "/etc/NetworkManager" # this shouldn't hurt even if networkmanager isn't installed
        # TODO this needs to be checked
        #"/var/lib/bluetooth"
        #"/var/lib/nixos"
        #"/var/lib/systemd/coredump"
      ];
      files = [
        "/etc/machine-id"
      ];
    };
  };
}