40 lines
624 B
Nix
40 lines
624 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
data = {
|
|
directories = [
|
|
".config/syncthing"
|
|
".gnupg"
|
|
".local/share/PrismLauncher/instances"
|
|
".ssh"
|
|
|
|
"nixos"
|
|
];
|
|
files = [];
|
|
};
|
|
|
|
cache = {
|
|
directories = [
|
|
".cache/nix"
|
|
".cache/spotify"
|
|
".cargo"
|
|
".config/obsidian"
|
|
".config/spotify"
|
|
(
|
|
lib.optional
|
|
config.gaming.enable
|
|
".local/share/PrismLauncher"
|
|
)
|
|
(
|
|
lib.optional
|
|
config.gaming.enable
|
|
".local/share/Steam"
|
|
)
|
|
".local/state/wireplumber"
|
|
".thunderbird"
|
|
];
|
|
files = [];
|
|
};
|
|
}
|