diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-27 19:04:34 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-27 19:05:01 -0800 |
commit | 4b6156591ea61270a849322089370a05cb647020 (patch) | |
tree | f6093745c77cd4f7ffa9fddc1174c82136da9fe9 /hosts | |
parent | nas: consume everything from the server profile (diff) | |
download | world-4b6156591ea61270a849322089370a05cb647020.tar.gz |
hosts: ensure we have bash and zsh
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/common/system/default.nix b/hosts/common/system/default.nix index db48b66..7d8fe9b 100644 --- a/hosts/common/system/default.nix +++ b/hosts/common/system/default.nix @@ -17,4 +17,7 @@ font = "Lat2-Terminus16"; keyMap = "us"; }; + + # It's always useful to have bash around + environment.shells = [ pkgs.bashInteractive pkgs.zsh ]; } |