marvin: enable fish declaratively
Alan Pearce alan@alanpearce.eu
Sat, 16 Nov 2024 20:29:10 +0100
1 files changed, 7 insertions(+), 1 deletions(-)
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";