nixos/hosts/architect/options.nix
Giulio De Pasquale a022b2d0ce MASSIVE
2025-04-26 17:43:50 +01:00

21 lines
377 B
Nix

{ config, lib, ... }:
{
options.architect = {
firewall = lib.mkOption {
internal = true;
default = config.pepe.core.firewall;
};
networks = lib.mkOption {
internal = true;
default = config.pepe.core.network.interfaces;
};
vhost = lib.mkOption {
internal = true;
default = config.pepe.core.vhost.hosts;
};
};
}