fix(persistence): zoxide directory typo looool

This commit is contained in:
Mohammad Rafiq 2025-05-20 17:40:34 +08:00
parent e1337e0f99
commit 915444a4b6
No known key found for this signature in database
4 changed files with 3 additions and 9 deletions

View file

@ -27,9 +27,7 @@
inputs.nixspect.packages."x86_64-linux".nixspect inputs.nixspect.packages."x86_64-linux".nixspect
]; ];
home.persistence."/persist/home/rafiq".directories = [ home.persistence."/persist/home/rafiq".directories = [ "repos" ];
"repos"
];
programs.direnv = { programs.direnv = {
enable = true; enable = true;

View file

@ -22,7 +22,7 @@
programs.zoxide.enable = true; programs.zoxide.enable = true;
home.shellAliases.cd = "z"; home.shellAliases.cd = "z";
home.persistence."/persist/home/${config.snowfallorg.user.name}".directories = [ home.persistence."/persist/home/${config.snowfallorg.user.name}".directories = [
"./local/share/zoxide" ".local/share/zoxide"
]; ];
} }
{ {

View file

@ -19,6 +19,5 @@
}; };
environment.persistence."/persist".files = [ "/var/lib/tailscale/tailscaled.state" ]; environment.persistence."/persist".files = [ "/var/lib/tailscale/tailscaled.state" ];
} }
]; ];
} }

View file

@ -28,9 +28,7 @@
fileSystems."/persist".neededForBoot = true; fileSystems."/persist".neededForBoot = true;
environment.persistence."/persist" = { environment.persistence."/persist" = {
hideMounts = true; hideMounts = true;
directories = [ directories = [ "/var/lib/systemd" ];
"/var/lib/systemd"
];
files = [ files = [
"/etc/ssh/ssh_host_ed25519_key" "/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub" "/etc/ssh/ssh_host_ed25519_key.pub"
@ -39,5 +37,4 @@
"/etc/machine-id" "/etc/machine-id"
]; ];
}; };
} }