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

9 lines
146 B
Nix

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