liminix/tests/wlan/configuration.nix

32 lines
915 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... } :
let
inherit (pkgs.liminix.networking) interface address hostapd route dnsmasq;
inherit (pkgs.liminix.services) oneshot longrun bundle target;
in rec {
2023-07-16 16:56:07 +00:00
imports = [
../../modules/wlan.nix
../../modules/hostapd
2023-09-01 16:55:08 +00:00
../../modules/network
2023-07-16 16:56:07 +00:00
];
2023-08-05 11:21:18 +00:00
services.hostap = config.system.service.hostapd.build {
2023-07-16 16:56:07 +00:00
interface = config.hardware.networkInterfaces.wlan_24;
params = {
ssid = "liminix";
country_code = "GB";
hw_mode="g";
channel = "2";
wmm_enabled = 1;
ieee80211n = 1;
wpa_passphrase = "colourless green ideas";
auth_algs = 1; # 1=wpa2, 2=wep, 3=both
wpa = 2; # 1=wpa, 2=wpa2, 3=both
wpa_key_mgmt = "WPA-PSK";
wpa_pairwise = "TKIP CCMP"; # auth for wpa (may not need this?)
rsn_pairwise = "CCMP"; # auth for wpa2
};
};
defaultProfile.packages = with pkgs; [ tcpdump ] ;
}