update pppoe and wlan tests

This commit is contained in:
Daniel Barlow
2023-09-01 17:55:08 +01:00
parent d3dc9752f8
commit 3b9c5635b8
2 changed files with 14 additions and 37 deletions

View File

@@ -3,11 +3,10 @@ let
inherit (pkgs.liminix.networking) interface address hostapd route dnsmasq;
inherit (pkgs.liminix.services) oneshot longrun bundle target;
in rec {
services.loopback = config.hardware.networkInterfaces.lo;
imports = [
../../modules/wlan.nix
../../modules/hostapd
../../modules/network
];
services.hostap = config.system.service.hostapd.build {
@@ -28,12 +27,5 @@ in rec {
};
};
services.default = target {
name = "default";
contents = with config.services; [
loopback
hostap
];
};
defaultProfile.packages = with pkgs; [ tcpdump ] ;
}