rename "device" config tree as "hardware"

we are also using "device" for "network device" (as in eth0,
wlan0 etc) so this makes it a bit less confusing perhaps
This commit is contained in:
Daniel Barlow 2023-03-03 22:52:33 +00:00
parent 263882cbe4
commit e0ea576674
10 changed files with 38 additions and 37 deletions

View file

@ -83,7 +83,7 @@ in rec {
};
};
services.hostap = hostapd (config.device.networkInterfaces.wlan_24) {
services.hostap = hostapd (config.hardware.networkInterfaces.wlan_24) {
params = {
ssid = "liminix";
country_code = "GB";
@ -100,7 +100,7 @@ in rec {
};
};
services.hostap5 = hostapd (config.device.networkInterfaces.wlan_5) {
services.hostap5 = hostapd (config.hardware.networkInterfaces.wlan_5) {
params = rec {
ssid = "liminix_5";
country_code = "GB";
@ -142,9 +142,9 @@ in rec {
in bundle {
name = "bridge-members";
contents = map addif [
config.device.networkInterfaces.wlan_24
config.device.networkInterfaces.lan
config.device.networkInterfaces.wlan_5
config.hardware.networkInterfaces.wlan_24
config.hardware.networkInterfaces.lan
config.hardware.networkInterfaces.wlan_5
];
};
@ -167,7 +167,7 @@ in rec {
};
services.wan =
let iface = config.device.networkInterfaces.wan;
let iface = config.hardware.networkInterfaces.wan;
in pppoe iface {
ppp-options = [
"debug" "+ipv6" "noauth"
@ -213,7 +213,7 @@ in rec {
name = "default";
contents = with services; [
loopback
config.device.networkInterfaces.lan
config.hardware.networkInterfaces.lan
int
bridge
hostap