dots/modules/home-manager/features/bash.nix
2025-07-11 16:57:21 +10:00

13 lines
228 B
Nix

{ config, lib, ... }:
let
feature = "bash";
in
{
config = lib.mkIf config.${feature}.enable {
programs.bash.enable = true;
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}