Files
nixos/home/fish.nix

19 lines
362 B
Nix

{ config, pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
# This is commented until a good way of installing themes is found
# fish_config theme choose Catppuccin\ Mocha
function fish_greeting
krabby random --no-title --padding-left 2
end
function weather
curl "wttr.in/Bolzano?0?Q?"
end
'';
};
}