diff options
Diffstat (limited to 'shared/nixos/common-shell-settings/default.nix')
-rw-r--r-- | shared/nixos/common-shell-settings/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shared/nixos/common-shell-settings/default.nix b/shared/nixos/common-shell-settings/default.nix new file mode 100644 index 0000000..ce3b52e --- /dev/null +++ b/shared/nixos/common-shell-settings/default.nix @@ -0,0 +1,14 @@ +# This module sets options to ensure a consistent Baseline Shell Experince™ +# across the entire fleet. +# +# Most of the heavy lifting is done in `shared/nixos-and-darwin/common-shell-settings`. +# This module is limited to NixOS-specific settings. +{pkgs, ...}: { + imports = [ + ../../nixos-and-darwin/common-shell-settings + ]; + + # There is not nix-darwin equivalent to this NixOS option. + # The default shell on MacOS is already ZSH. + users.defaultUserShell = pkgs.zsh; +} |