Files
nix/modules/software/fish.nix
2026-03-03 15:01:19 -06:00

15 lines
246 B
Nix

{
den.aspects.fish = {
nixos = { pkgs, ...}: {
programs.fish.shellAliases = {
box = "ssh box.bug.tools";
};
environment.systemPackages = with pkgs.fishPlugins; [
done
sponge
];
};
};
}