diff options
| author | Franck Cuny <fcuny@roblox.com> | 2024-04-19 09:20:57 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@roblox.com> | 2024-04-19 09:20:57 -0700 |
| commit | f5400b6fb0c3cb57a2950b027da41d44204cdcd4 (patch) | |
| tree | 11c157a4178b6a76b7ba52d402e3c8042e3004f1 /nix/hosts/mba/default.nix | |
| parent | move the `slocalc` to a python script (diff) | |
| download | infra-f5400b6fb0c3cb57a2950b027da41d44204cdcd4.tar.gz | |
switch to fish as the default shell
Diffstat (limited to 'nix/hosts/mba/default.nix')
| -rw-r--r-- | nix/hosts/mba/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/hosts/mba/default.nix b/nix/hosts/mba/default.nix index d583df6..a9779f8 100644 --- a/nix/hosts/mba/default.nix +++ b/nix/hosts/mba/default.nix @@ -1,10 +1,14 @@ -{ self, ... }: +{ pkgs, self, ... }: { services.nix-daemon.enable = true; programs.zsh.enable = true; + programs.fish.enable = true; + + environment.shells = [ pkgs.fish pkgs.zsh ]; users.users.fcuny.home = "/Users/fcuny"; + users.users.fcuny.shell = pkgs.fish; # Touch ID for sudo auth security.pam.enableSudoTouchIdAuth = true; |
