nix-config/modules/template.nix
2025-02-25 15:56:58 +01:00

20 lines
257 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 = {
};
}