This commit is contained in:
Charlotte 🦝 Delenk 2024-11-03 15:51:26 +01:00
parent 7ba458a422
commit fe071f7cf3
3 changed files with 16 additions and 1 deletions

View file

@ -19,6 +19,7 @@ with lib; {
inherit name;
value.home.persistence.default = {
persistentStoragePath = "/persistent/home/${name}";
allowOther = true;
};
})
config.environment.impermanence.users);

View file

@ -1,5 +1,8 @@
{...}: {
imports = [./tide.nix];
imports = [
./tide.nix
./z.nix
];
programs.fish = {
enable = true;
};

11
programs/shell/fish/z.nix Normal file
View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
programs.fish.plugins = with pkgs.fishPlugins; [
{
name = "z";
src = z.src;
}
];
home.persistence.default.directories = [
".local/share/z"
];
}