about summary refs log tree commit diff stats
path: root/home-manager/impermanence/default.nix
blob: 5949329a0abaf3ddf2d0a633c946373bd4fdd84a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vim: ts=2
{
  config,
  impermanence,
  ...
}: {
  home.persistence."/srv/home/soispha" = {
    #allowOther = true; # TODO this only works some of the time
    directories = [
      ".local/share"
      ".cache"

      "media"
      "repos"
      "school"
    ];
    files = [
    ];
  };
}