2023-09-24 22:29:30 +00:00
|
|
|
## DHCP6 client module
|
|
|
|
## ===================
|
|
|
|
##
|
|
|
|
## This is for use if you have an IPv6-capable upstream that provides
|
|
|
|
## address information and/or prefix delegation using DHCP6. It
|
|
|
|
## provides a service to request address information in the form of a
|
|
|
|
## DHCP lease, and two dependent services that listen for updates
|
|
|
|
## to the DHCP address information and can be used to update
|
|
|
|
## addresses of network interfaces that you want to assign those
|
|
|
|
## prefixes to
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2023-09-24 22:29:30 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
system.service.dhcp6c = {
|
|
|
|
client = mkOption { type = liminix.lib.types.serviceDefn; };
|
|
|
|
prefix = mkOption { type = liminix.lib.types.serviceDefn; };
|
|
|
|
address = mkOption { type = liminix.lib.types.serviceDefn; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config.system.service.dhcp6c = {
|
2024-07-15 18:00:08 +00:00
|
|
|
client = config.system.callService ./client.nix {
|
2023-09-24 22:29:30 +00:00
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.interface;
|
|
|
|
description = "interface (usually WAN) to query for DHCP6";
|
|
|
|
};
|
|
|
|
};
|
2024-07-15 18:00:08 +00:00
|
|
|
address = config.system.callService ./address.nix {
|
2023-09-24 22:29:30 +00:00
|
|
|
client = mkOption {
|
|
|
|
type = types.anything; # liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.interface;
|
|
|
|
description = "interface to assign the address to";
|
|
|
|
};
|
|
|
|
};
|
2024-07-15 18:00:08 +00:00
|
|
|
prefix = config.system.callService ./prefix.nix {
|
2023-09-24 22:29:30 +00:00
|
|
|
client = mkOption {
|
|
|
|
type = types.anything; # liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.interface;
|
|
|
|
description = "interface to assign <prefix>::1 to";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|