13 lines
188 B
Nix
13 lines
188 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.programs.zsh;
|
|
in {
|
|
imports = [];
|
|
options.programs.zsh = with lib; with lib.types; {};
|
|
config = with lib; mkIf cfg.enable {};
|
|
}
|