diff options
Diffstat (limited to 'home/shells/fish.nix')
| -rw-r--r-- | home/shells/fish.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/shells/fish.nix b/home/shells/fish.nix new file mode 100644 index 0000000..9634249 --- /dev/null +++ b/home/shells/fish.nix @@ -0,0 +1,17 @@ +{ ... }: + +{ + programs.fish = { + enable = true; + + interactiveShellInit = + '' + set fish_greeting + fastfetch + ''; + + shellAliases = { + gs = "git status"; + }; + }; +} |
