blob: 9ea5ca8eb98d8300132a3481f33097be10f82391 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Persistence configuration for machines with throw-away setups.
{ depot, pkgs, ... }: # readTree
{ config, lib, ... }: # home-manager
{
imports = [ (depot.third_party.sources.impermanence + "/home-manager.nix") ];
home.persistence."/persist/tazjin/home" = {
allowOther = true;
directories = [
".cargo"
".config/audacity"
".config/chromium"
".config/google-chrome"
".config/quassel-irc.org"
".config/syncthing"
".config/unity3d"
".electrum"
".gnupg"
".local/share/audacity"
".local/share/direnv"
".local/share/fish"
".local/share/keyrings"
".local/share/zoxide"
".mozilla/firefox"
".password-store"
".rustup"
".ssh"
".steam"
".telega"
".thunderbird"
"go"
"mail"
];
files = [
".notmuch-config"
];
};
}
|