dotfiles/user-modules/shell/bash.nix

23 lines
263 B
Nix
Raw Permalink 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";
};
2024-12-01 23:54:05 +00:00
config.programs.bash = {
enable = cfg.enable;
shellAliases = config.modules.shell.aliases;
};
2024-07-19 12:00:55 +00:00
}