Switch to fish shell
1 file changed, 19 insertions(+), 0 deletions(-)
changed files
A user/settings/fish.nix
@@ -0,0 +1,19 @@ +{ pkgs +, ... +}: { + programs.fish = { + enable = true; + plugins = [ + { + name = "tide"; + src = pkgs.fetchFromGitHub { + # https://github.com/IlanCosman/tide + owner = "IlanCosman"; + repo = "tide"; + rev = "a3426e157f94b8a9cb5bcf96946b1e55625a1948"; + sha256 = "1fwqmsrd6bpf67rgj6f362abjmpk6q8yynyskc4niwg3g15diqq5"; + }; + } + ]; + }; +}