nix-config/modules/template.nix
2025-02-28 00:04:49 +01:00

20 lines
273 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.xxx.yyy;
in {
options = {
horseman.xxx.yyy = {
enable = mkEnableOption "";
};
};
config = mkIf cfg.enable {
};
}