Files
NixOS-configs/modules/fish/default.nix
2025-11-19 16:43:05 -06:00

10 lines
153 B
Nix

{ pkgs, ... }:
{
programs.fish.enable = true;
home.shell.enableFishIntegration = true;
programs.fish.functions = {
fish_greeting = "";
};
}