2024-07-19 14:00:55 +02:00

19 lines
200 B
Nix

{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.modules.bash;
in
{
options.modules.bash = {
enable = mkEnableOption "bash";
};
config.programs.bash.enable = cfg.enable;
}