Files
NixOS/modules/shell/config/home.nix
2026-03-16 16:41:10 -06:00

21 lines
349 B
Nix

{
inputs,
lib,
osConfig ? null,
...
}:
let
shellType = inputs.self.lib.hmShellType osConfig "bash";
in
{
options.my.shell.type = lib.mkOption {
type = lib.types.enum [
"bash"
"zsh"
];
default = "bash";
description = "The shell to use in Home Manager";
};
config.my.shell.type = lib.mkDefault shellType;
}