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

13 lines
193 B
Nix
Raw Normal View History

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