mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
96 lines
2.3 KiB
Nix
96 lines
2.3 KiB
Nix
{
|
|
config,
|
|
self,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.custom.networking;
|
|
in
|
|
{
|
|
options.custom.networking = {
|
|
hostName = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = config.networking.hostName;
|
|
readOnly = true;
|
|
};
|
|
isLighthouse = lib.mkEnableOption "";
|
|
isServer = lib.mkEnableOption "";
|
|
isClient = lib.mkEnableOption "";
|
|
|
|
overlay = {
|
|
networkAddress = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
prefixLength = lib.mkOption {
|
|
type = lib.types.nullOr (lib.types.ints.between 0 32);
|
|
default = null;
|
|
};
|
|
domain = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
|
|
address = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
interface = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
systemdUnit = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
|
|
dnsServers = lib.mkOption {
|
|
type = lib.types.anything;
|
|
default =
|
|
self.nixosConfigurations
|
|
|> lib.attrValues
|
|
|> lib.filter (host: host.config.custom.services.dns.enable)
|
|
|> lib.map (host: host.config.custom.networking.overlay.address);
|
|
};
|
|
};
|
|
|
|
underlay = {
|
|
interface = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
useDhcp = lib.mkEnableOption "";
|
|
isPublic = lib.mkEnableOption "";
|
|
address = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.nonEmptyStr;
|
|
default = null;
|
|
};
|
|
gateway = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.nonEmptyStr;
|
|
default = null;
|
|
};
|
|
};
|
|
|
|
nodes = lib.mkOption {
|
|
type = lib.types.anything;
|
|
default =
|
|
self.nixosConfigurations
|
|
|> lib.attrValues
|
|
|> lib.map (host: host.config.custom.networking)
|
|
|> lib.map (
|
|
node:
|
|
lib.removeAttrs node [
|
|
"nodes"
|
|
"peers"
|
|
]
|
|
);
|
|
readOnly = true;
|
|
};
|
|
peers = lib.mkOption {
|
|
type = lib.types.anything;
|
|
default = cfg.nodes |> lib.filter (node: node.hostName != cfg.hostName);
|
|
readOnly = true;
|
|
};
|
|
};
|
|
}
|