marvin: enable fish declaratively
1 file changed, 7 insertions(+), 1 deletion(-)
jump to
M system/marvin.nix → system/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";