feat(bash): alias completions

This commit is contained in:
2026-03-26 08:44:41 -06:00
parent c551e8f86e
commit da60eaa936
3 changed files with 51 additions and 19 deletions

16
modules/home/bash.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.bash;
in {
options.sydnix.bash = {
enable = lib.mkEnableOption "Bash";
};
imports = [
./bash/complete-alias.nix
];
config = lib.mkIf cfg.enable {
programs.bash.enable = true;
};
}