nixos/home/modules/programs/bash.nix

23 lines
286 B
Nix
Raw Normal View History

2025-05-03 20:40:22 +08:00
{
config,
lib,
...
2025-07-13 06:04:55 +08:00
}:
let
2025-05-03 20:40:22 +08:00
cfg = config.youthlic.programs.bash;
2025-07-13 06:04:55 +08:00
in
{
2025-05-03 20:40:22 +08:00
options = {
youthlic.programs.bash = {
enable = lib.mkEnableOption "bash";
};
};
config = lib.mkIf cfg.enable {
programs = {
bash = {
enable = true;
};
};
};
}