mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-07 22:33:53 +00:00
12 lines
219 B
Nix
12 lines
219 B
Nix
{ pkgs, lib, config, False, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.module.shells.bash;
|
|
in {
|
|
options = { module.shells.bash = { enable = mkEnableOption ""; }; };
|
|
|
|
config = mkIf cfg.enable { programs.bash = False; };
|
|
}
|
|
|