ooknet/inputs/home/modules/console/shell/bash/default.nix

9 lines
151 B
Nix

{ config, lib, ... }:
let
cfg = config.homeModules.console.shell.bash;
in
{
config = lib.mkIf cfg.enable {
programs.bash.enable = true;
};
}