1
1
Fork 0
nixos/options/custom/programs/bash.nix
Myned 9bb40136c3
bash: initial program
Signed-off-by: Myned <dev@bjork.tech>
2024-12-26 00:24:09 -05:00

22 lines
323 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.bash;
in {
options.custom.programs.bash = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
home-manager.sharedModules = [
{
programs.bash = {
enable = true;
};
}
];
};
}