about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-27 19:04:34 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-27 19:05:01 -0800
commit4b6156591ea61270a849322089370a05cb647020 (patch)
treef6093745c77cd4f7ffa9fddc1174c82136da9fe9 /hosts
parentnas: consume everything from the server profile (diff)
downloadworld-4b6156591ea61270a849322089370a05cb647020.tar.gz
hosts: ensure we have bash and zsh
Diffstat (limited to '')
-rw-r--r--hosts/common/system/default.nix3
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 ];
 }