summaryrefslogtreecommitdiff
path: root/home/shells/fish.nix
blob: 9634249a21aac9a257023097fdc904b3b2bee1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ ... }:

{
  programs.fish = {
    enable = true;

    interactiveShellInit =
    ''
      set fish_greeting
      fastfetch
    '';

    shellAliases = {
      gs = "git status";
    };
  };
}