mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-02-05 00:26:47 +05:30
22 lines
366 B
Nix
22 lines
366 B
Nix
{...}: {
|
|
home.persistence."/persist" = {
|
|
directories = [
|
|
"Projects"
|
|
"Stuff"
|
|
".ssh"
|
|
".wakatime"
|
|
".config/sops"
|
|
".config/go-wol"
|
|
".local/share/nvim"
|
|
".local/share/zsh"
|
|
".local/share/zoxide"
|
|
".local/state/lazygit"
|
|
];
|
|
files = [
|
|
".wakatime.cfg"
|
|
];
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|