23 lines
286 B
Nix
23 lines
286 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
service = "";
|
|
cfg = config.system.${service};
|
|
sec = config.sops.secrets;
|
|
homelab = config.homelab;
|
|
in
|
|
{
|
|
options.system.${service} = {
|
|
enable = lib.mkEnableOption "enables ${service}";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
};
|
|
}
|