nixos/profiles/zsh/default.nix

20 lines
277 B
Nix
Raw Normal View History

2026-01-11 19:07:14 +01:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.zsh;
in
{
options.my.profiles.zsh = with lib; {
enable = mkEnableOption "zsh profile";
};
config = lib.mkIf cfg.enable {
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
};
}