Files
nixos/modules/environments/zsh/default.nix
T
2023-07-03 09:28:58 +00:00

19 lines
315 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.zsh;
in {
options.my.profiles.zsh = with lib; {
enable = mkEnableOption "zsh env";
};
config = lib.mkIf cfg.enable {
programs.zsh.enable = true;
programs.zsh.ohMyZsh.enable = true;
users.defaultUserShell = pkgs.zsh;
} ;
}