update wlan test to use module

module-based-network
Daniel Barlow 2023-07-16 17:56:07 +01:00
parent 648ea5613b
commit 5bf8e8522a
1 changed files with 6 additions and 4 deletions

View File

@ -5,11 +5,13 @@ let
in rec {
services.loopback = config.hardware.networkInterfaces.lo;
imports = [ ../../modules/wlan.nix ];
imports = [
../../modules/wlan.nix
../../modules/hostapd
];
services.wlan = config.hardware.networkInterfaces.wlan_24;
services.hostap = hostapd (services.wlan) {
services.hostap = config.system.service.hostapd {
interface = config.hardware.networkInterfaces.wlan_24;
params = {
ssid = "liminix";
country_code = "GB";