summaryrefslogtreecommitdiff
path: root/shared/nixos/common-shell-settings/default.nix
blob: ce3b52ea736acec39a9807f95b5d3bd8e688e713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}