2024-07-19 14:00:55 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-18 06:08:27 +02:00
|
|
|
|
|
|
|
with lib;
|
2024-07-19 14:00:55 +02:00
|
|
|
let
|
2024-07-18 06:08:27 +02:00
|
|
|
cfg = config.modules.bash;
|
2024-07-19 14:00:55 +02:00
|
|
|
in
|
|
|
|
{
|
2024-07-18 06:08:27 +02:00
|
|
|
options.modules.bash = {
|
|
|
|
enable = mkEnableOption "bash";
|
|
|
|
};
|
|
|
|
|
2024-12-02 00:54:05 +01:00
|
|
|
config.programs.bash = {
|
|
|
|
enable = cfg.enable;
|
|
|
|
|
|
|
|
shellAliases = config.modules.shell.aliases;
|
|
|
|
};
|
2024-07-19 14:00:55 +02:00
|
|
|
}
|