diff options
author | Alan Pearce | 2024-11-16 20:29:10 +0100 |
---|---|---|
committer | Alan Pearce | 2024-11-16 20:29:10 +0100 |
commit | a2ce781816d5e2c5d61ab1dfe5c2d210298f3358 (patch) | |
tree | b6e41397ac99dcc6d9071904652997a3bc582f65 /system | |
parent | acb3d2889fb68a1fed7b34529c2c6dde0b0f093d (diff) | |
download | nixfiles-a2ce781816d5e2c5d61ab1dfe5c2d210298f3358.tar.lz nixfiles-a2ce781816d5e2c5d61ab1dfe5c2d210298f3358.tar.zst nixfiles-a2ce781816d5e2c5d61ab1dfe5c2d210298f3358.zip |
Diffstat (limited to 'system')
-rw-r--r-- | system/marvin.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/system/marvin.nix b/system/marvin.nix index a69342a0..cc02a202 100644 --- a/system/marvin.nix +++ b/system/marvin.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { imports = [ ./settings/darwin.nix ./settings/dev.nix @@ -11,6 +11,12 @@ 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"; launchd.user.envVariables = { |