flake/modules/home-manager/programs/fish.nix
2025-11-05 14:51:36 +03:00

15 lines
233 B
Nix

{
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting
'';
functions = {
gitu = ''
git add --all
git commit -m "$argv"
git push
'';
};
};
}