dotfiles/modules/users/modules/shell/bash.nix

19 lines
200 B
Nix
Raw Normal View History

2024-07-19 12:00:55 +00:00
{
lib,
config,
pkgs,
...
}:
2024-07-18 04:08:27 +00:00
with lib;
2024-07-19 12:00:55 +00:00
let
2024-07-18 04:08:27 +00:00
cfg = config.modules.bash;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 04:08:27 +00:00
options.modules.bash = {
enable = mkEnableOption "bash";
};
config.programs.bash.enable = cfg.enable;
2024-07-19 12:00:55 +00:00
}