configuration.nix/home/persistence.nix

44 lines
982 B
Nix
Raw Normal View History

2024-02-18 15:55:31 +05:30
_: {
2023-03-15 22:11:59 +05:30
home.persistence."/persist/home" = {
allowOther = true;
directories = [
".cache/aria2"
2023-06-03 12:25:11 +05:30
".cache/nix-index"
2023-08-27 14:33:06 +05:30
".cache/ytfzf"
2023-03-15 22:11:59 +05:30
".config/1Password"
".config/dconf"
2023-10-08 18:39:49 +05:30
".config/doctl"
2023-03-15 22:11:59 +05:30
".config/lazygit"
2024-01-04 21:51:18 +05:30
".config/gh"
2023-07-08 16:12:09 +05:30
".config/obsidian"
2023-09-15 20:12:30 +05:30
".fly"
2023-03-15 22:11:59 +05:30
".gnupg"
2024-01-04 21:51:06 +05:30
".local/share/direnv"
2024-02-17 15:49:19 +05:30
".local/share/flatpak"
2023-03-15 22:11:59 +05:30
".local/share/keyrings"
".local/share/nix"
2023-03-27 22:14:56 +05:30
".local/share/zoxide"
2023-03-15 22:11:59 +05:30
".local/share/zsh"
2023-03-22 23:39:18 +05:30
".local/state"
2023-03-15 22:11:59 +05:30
".mozilla"
2024-01-04 21:51:10 +05:30
".ssh"
2024-02-17 16:38:12 +05:30
".var"
2024-02-18 16:00:03 +05:30
"Documents"
"Downloads"
"Music"
"Others"
"Pictures"
"Videos"
{ directory = ".config/nvim"; method = "symlink"; }
{ directory = ".config/nixos"; method = "symlink"; }
{ directory = ".local/share/nvim"; method = "symlink"; }
{ directory = "Projects"; method = "symlink"; }
2023-03-15 22:11:59 +05:30
];
files = [
".config/wallpaper_config.json"
2024-01-05 19:03:37 +05:30
".docker/config.json"
2023-03-15 22:11:59 +05:30
];
};
}