configuration.nix/home/persistence.nix

38 lines
690 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ ... }: {
home.persistence."/persist/home" = {
allowOther = true;
directories = [
".cache/mesa_shader_cache"
".cache/mozilla"
".cache/nix"
".config/1Password"
".config/dconf"
2023-03-19 17:10:30 +05:30
".config/discord"
2023-03-15 22:11:59 +05:30
".config/lazygit"
".config/spotify-tui"
2023-03-23 23:39:50 +05:30
".config/Yubico"
2023-03-15 22:11:59 +05:30
".gnupg"
".local/share/atuin"
".local/share/keyrings"
".local/share/nix"
".local/share/zsh"
2023-03-22 23:39:18 +05:30
".local/state"
2023-03-15 22:11:59 +05:30
".mozilla"
".nixos-config"
".ssh"
"Documents"
"Downloads"
"Music"
"Others"
"Pictures"
"Projects"
"Videos"
];
files = [
".config/gh/hosts.yml"
];
};
}