14 lines
254 B
Nix
Executable File
14 lines
254 B
Nix
Executable File
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.sydnix.users.crumb.bash;
|
|
in {
|
|
options.sydnix.users.crumb.bash.enable = lib.mkEnableOption "Bash, à la crumb";
|
|
config = lib.mkIf cfg.enable {
|
|
programs.bash = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|
|
|