all repos — nixfiles @ e6cc62fdc2f5e1c978dc875fd27fb023bb3f5c7b

System and user configuration, managed by nix and home-manager

Switch to fish shell
Alan Pearce alan@alanpearce.eu
Wed, 16 Aug 2023 21:02:13 +0200
commit

e6cc62fdc2f5e1c978dc875fd27fb023bb3f5c7b

parent

ed692b6bfe0bef5769ce202cd690e5e35718ceee

3 files changed, 21 insertions(+), 0 deletions(-)

jump to
M system/settings/programs/shell.nixsystem/settings/programs/shell.nix
@@ -25,4 +25,5 @@ ];   programs.fish = {
     enable = true;
   };
+  users.users.alan.shell = pkgs.fish;
 }
M user/mba.nixuser/mba.nix
@@ -6,6 +6,7 @@ ./settings/development/javascript.nix     ./settings/development/web.nix
     ./settings/darwin.nix
     ./settings/emacs.nix
+    ./settings/fish.nix
     ./settings/git.nix
     ./settings/nixpkgs.nix
     ./settings/ssh.nix
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";
+        };
+      }
+    ];
+  };
+}