There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
## VLAN
|
|
## ====
|
|
##
|
|
## Virtual LANs give you the ability to sub-divide a LAN. Linux can
|
|
## accept VLAN tagged traffic and presents each VLAN ID as a
|
|
## different network interface (eg: eth0.100 for VLAN ID 100)
|
|
##
|
|
## Some Liminix devices with multiple ethernet ports are implemented
|
|
## using a network switch connecting the physical ports to the CPU,
|
|
## and require using VLAN in order to send different traffic to
|
|
## different ports (e.g. LAN vs WAN)
|
|
|
|
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
inherit (pkgs) liminix;
|
|
in
|
|
{
|
|
options = {
|
|
system.service.vlan = mkOption { type = liminix.lib.types.serviceDefn; };
|
|
};
|
|
config.system.service.vlan = config.system.callService ./service.nix {
|
|
ifname = mkOption {
|
|
type = types.str;
|
|
description = "interface name to create";
|
|
};
|
|
primary = mkOption {
|
|
description = "existing physical interface";
|
|
type = liminix.lib.types.interface;
|
|
};
|
|
vid = mkOption {
|
|
description = "VLAN identifier (VID) in range 1-4094";
|
|
type = types.str;
|
|
};
|
|
};
|
|
config.kernel.config = {
|
|
VLAN_8021Q = "y";
|
|
};
|
|
}
|