home
This commit is contained in:
parent
a71a3b5593
commit
cb52890889
16657 changed files with 1483086 additions and 1 deletions
41
home/persist.nix
Normal file
41
home/persist.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{lib, config}: {
|
||||
data = {
|
||||
directories = [
|
||||
".config/syncthing"
|
||||
".config/sops"
|
||||
".config/keepassxc"
|
||||
".config/obsidian"
|
||||
".config/vesktop"
|
||||
".gnupg"
|
||||
".ssh"
|
||||
|
||||
".thunderbird"
|
||||
".mozilla"
|
||||
|
||||
"nixos"
|
||||
"sync"
|
||||
"obsidian"
|
||||
"code"
|
||||
".keepass"
|
||||
] ++ lib.optionals config.gaming.enable [
|
||||
".local/share/PrismLauncher"
|
||||
".local/share/Steam"
|
||||
".local/share/lutris"
|
||||
".local/share/games"
|
||||
];
|
||||
files = [];
|
||||
};
|
||||
|
||||
cache = {
|
||||
directories = [
|
||||
".cache/nix"
|
||||
".cache/spotify"
|
||||
".cache/keepassxc"
|
||||
".cargo"
|
||||
".local/state/wireplumber"
|
||||
"tmp"
|
||||
] ++ lib.optionals config.gaming.enable [
|
||||
];
|
||||
files = [];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue