nix-config/modules/template.nix
2025-02-28 00:07:44 +01:00

21 lines
279 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 {
};
}