all repos — nixfiles @ a2ce781816d5e2c5d61ab1dfe5c2d210298f3358

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

marvin: enable fish declaratively
Alan Pearce alan@alanpearce.eu
Sat, 16 Nov 2024 20:29:10 +0100
commit

a2ce781816d5e2c5d61ab1dfe5c2d210298f3358

parent

acb3d2889fb68a1fed7b34529c2c6dde0b0f093d

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M system/marvin.nixsystem/marvin.nix
@@ -1,4 +1,4 @@-{ ... }: {
+{ pkgs, ... }: {
   imports = [
     ./settings/darwin.nix
     ./settings/dev.nix
@@ -10,6 +10,12 @@ services.caddy = {     user = "root";
     group = "wheel";
   };
+
+  programs.fish.enable = true;
+  environment.shells = with pkgs; [
+    fish
+    "/Users/alan/.local/state/nix/profile/bin/fish"
+  ];
 
   environment.variables.LANG = "en_GB.UTF-8";