infra/module/aspect/software/software-tty/fish.nix

29 lines
585 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
software-tty = {
nixos = {
programs.fish.enable = true;
};
homeManager =
{ pkgs, ... }:
{
home.shell.enableFishIntegration = true;
programs = {
fish = {
enable = true;
plugins = [
{
name = "autopair";
src = pkgs.fishPlugins.autopair;
}
];
functions = {
fish_greeting = "";
};
};
};
};
};
};
}