2023-08-27 22:45:27 +00:00
|
|
|
## Network
|
|
|
|
## =======
|
|
|
|
##
|
|
|
|
## Basic network services for creating hardware ethernet devices
|
|
|
|
## and adding addresses
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2023-08-27 22:45:27 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
2023-08-31 17:28:35 +00:00
|
|
|
inherit (pkgs.liminix.services) bundle;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2023-08-27 22:45:27 +00:00
|
|
|
options = {
|
|
|
|
system.service.network = {
|
|
|
|
link = mkOption {
|
|
|
|
description = "hardware network interface";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
address = mkOption {
|
|
|
|
description = "network interface address";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2023-08-31 22:24:23 +00:00
|
|
|
route = mkOption {
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2023-09-01 16:34:47 +00:00
|
|
|
forward = mkOption {
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2023-08-28 14:10:53 +00:00
|
|
|
dhcp = {
|
|
|
|
client = mkOption {
|
|
|
|
# this needs to move to its own service as it has
|
|
|
|
# busybox config
|
|
|
|
description = "DHCP v4 client";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
};
|
2023-08-27 22:45:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2023-08-31 17:28:35 +00:00
|
|
|
hardware.networkInterfaces = {
|
|
|
|
lo =
|
|
|
|
let
|
|
|
|
net = config.system.service.network;
|
2025-02-10 21:55:08 +00:00
|
|
|
iface = net.link.build { ifname = "lo"; };
|
|
|
|
in
|
|
|
|
bundle {
|
2023-08-31 17:28:35 +00:00
|
|
|
name = "loopback";
|
|
|
|
contents = [
|
2025-02-10 21:55:08 +00:00
|
|
|
(net.address.build {
|
2023-08-31 17:28:35 +00:00
|
|
|
interface = iface;
|
|
|
|
family = "inet";
|
2025-02-10 21:55:08 +00:00
|
|
|
address = "127.0.0.1";
|
2023-08-31 17:28:35 +00:00
|
|
|
prefixLength = 8;
|
|
|
|
})
|
2025-02-10 21:55:08 +00:00
|
|
|
(net.address.build {
|
2023-08-31 17:28:35 +00:00
|
|
|
interface = iface;
|
|
|
|
family = "inet6";
|
|
|
|
address = "::1";
|
|
|
|
prefixLength = 128;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2023-08-31 22:29:30 +00:00
|
|
|
services.loopback = config.hardware.networkInterfaces.lo;
|
2023-08-31 17:28:35 +00:00
|
|
|
|
2023-08-27 22:45:27 +00:00
|
|
|
system.service.network = {
|
2024-07-15 18:00:08 +00:00
|
|
|
link = config.system.callService ./link.nix {
|
2023-08-27 22:45:27 +00:00
|
|
|
ifname = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
example = "eth0";
|
2023-11-26 23:15:28 +00:00
|
|
|
description = ''
|
|
|
|
Device name as used by the kernel (as seen in "ip link"
|
|
|
|
or "ifconfig" output). If devpath is also specified, the
|
|
|
|
device will be renamed to the name provided.
|
|
|
|
'';
|
2023-08-27 22:45:27 +00:00
|
|
|
};
|
2023-11-26 23:15:28 +00:00
|
|
|
devpath = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "/devices/platform/soc/soc:internal-regs/f1070000.ethernet";
|
|
|
|
description = ''
|
|
|
|
Path to the sysfs node of the device. If you provide this
|
|
|
|
and the ifname option, the device will be renamed to the
|
|
|
|
name given by ifname.
|
2025-02-10 21:55:08 +00:00
|
|
|
'';
|
|
|
|
};
|
2023-08-27 22:45:27 +00:00
|
|
|
# other "ip link add" options could go here as well
|
|
|
|
mtu = mkOption {
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
example = 1480;
|
|
|
|
};
|
|
|
|
};
|
2024-07-15 18:00:08 +00:00
|
|
|
address = config.system.callService ./address.nix {
|
2023-08-27 22:45:27 +00:00
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
family = mkOption {
|
2025-02-10 21:55:08 +00:00
|
|
|
type = types.enum [
|
|
|
|
"inet"
|
|
|
|
"inet6"
|
|
|
|
];
|
2023-08-27 22:45:27 +00:00
|
|
|
};
|
|
|
|
address = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
prefixLength = mkOption {
|
|
|
|
type = types.ints.between 0 128;
|
|
|
|
};
|
|
|
|
};
|
2023-08-31 22:24:23 +00:00
|
|
|
|
2024-07-15 18:00:08 +00:00
|
|
|
route = config.system.callService ./route.nix {
|
2023-08-31 22:24:23 +00:00
|
|
|
interface = mkOption {
|
|
|
|
type = types.nullOr liminix.lib.types.interface;
|
|
|
|
default = null;
|
|
|
|
description = "Interface to route through. May be omitted if it can be inferred from \"via\"";
|
|
|
|
};
|
|
|
|
target = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "host or network to add route to";
|
|
|
|
};
|
|
|
|
via = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "address of next hop";
|
|
|
|
};
|
|
|
|
metric = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
description = "route metric";
|
|
|
|
default = 100;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-07-15 18:00:08 +00:00
|
|
|
forward = config.system.callService ./forward.nix {
|
2023-09-01 16:34:47 +00:00
|
|
|
enableIPv4 = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
enableIPv6 = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-07-15 18:00:08 +00:00
|
|
|
dhcp.client = config.system.callService ./dhcpc.nix {
|
2023-08-28 14:10:53 +00:00
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-08-27 22:45:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|