nix-config/overhaul/modules/template.nix
2025-02-11 17:31:06 +01:00

21 lines
290 B
Nix

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