nixos-config/programs/shell/fish/z.nix

12 lines
191 B
Nix
Raw Normal View History

2024-11-03 14:51:26 +00:00
{pkgs, ...}: {
programs.fish.plugins = with pkgs.fishPlugins; [
{
name = "z";
src = z.src;
}
];
home.persistence.default.directories = [
".local/share/z"
];
}