add z
This commit is contained in:
parent
7ba458a422
commit
fe071f7cf3
3 changed files with 16 additions and 1 deletions
|
@ -19,6 +19,7 @@ with lib; {
|
||||||
inherit name;
|
inherit name;
|
||||||
value.home.persistence.default = {
|
value.home.persistence.default = {
|
||||||
persistentStoragePath = "/persistent/home/${name}";
|
persistentStoragePath = "/persistent/home/${name}";
|
||||||
|
allowOther = true;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
config.environment.impermanence.users);
|
config.environment.impermanence.users);
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [./tide.nix];
|
imports = [
|
||||||
|
./tide.nix
|
||||||
|
./z.nix
|
||||||
|
];
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
11
programs/shell/fish/z.nix
Normal file
11
programs/shell/fish/z.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
programs.fish.plugins = with pkgs.fishPlugins; [
|
||||||
|
{
|
||||||
|
name = "z";
|
||||||
|
src = z.src;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
home.persistence.default.directories = [
|
||||||
|
".local/share/z"
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue