blob: 42451ac91c5450db1d4c2f7b13abe8c3b67b71d2 [file] [log] [blame]
Matthias Andreas Benkard262110d2021-08-24 06:35:55 +02001let home = "/Users/mulk" in
2
3{ host = "mulkinator"
4, stashes =
5 [ { name = "mulk.tar"
6 , baseDir = home
7
8 , tiers =
9 { hourly = { keep = 24 }
10 , daily = { keep = 7 }
11 , weekly = { keep = 4 }
12 , monthly = { keep = 12 }
13 }
14
15 , exclusions =
Matthias Andreas Benkardb0a5a5d2022-09-13 14:04:18 +020016 [ "**/.stack-work"
Matthias Andreas Benkard262110d2021-08-24 06:35:55 +020017 , "**/dist-newstyle"
18
19 , "${home}/.boot/cache"
20 , "${home}/.cabal/bin"
21 , "${home}/.cabal/packages"
22 , "${home}/.cache"
23 , "${home}/.cargo/bin"
24 , "${home}/.cargo/registry"
25 , "${home}/.codestream/agent"
26 , "${home}/.conan/data"
27 , "${home}/.cpanm"
28 , "${home}/.cpanplus"
29 , "${home}/.ghcup"
30 , "${home}/.gradle"
31 , "${home}/.hoogle"
32 , "${home}/.ivy2"
33 , "${home}/.m2"
34 , "${home}/.npm"
35 , "${home}/.rustup"
36 , "${home}/.sbt"
37 , "${home}/.stack"
38
39 , "${home}/Library/Caches"
40
41 , "${home}/Library/Containers/com.apple.Safari/Data/Library/Caches"
42 , "${home}/Library/Containers/com.atlassian.jira.mac/Data/Library/Caches"
43 , "${home}/Library/Containers/com.docker.docker"
44 , "${home}/Library/Containers/com.tinyspeck.slackmacgap"
45
46 , "${home}/Library/Metadata/CoreSpotlight"
47
48 , "${home}/Library/Safari/*.db"
49 , "${home}/Library/Safari/*.db-*"
50 ]
51 }
52 ]
53}