1{ pkgs, ... }:
2{
3 name = "kernel-latest-ath-user-regd";
4 meta = with pkgs.lib.maintainers; {
5 maintainers = [ veehaitch ];
6 };
7
8 nodes.machine =
9 { pkgs, ... }:
10 {
11 boot.kernelPackages = pkgs.linuxPackages_latest;
12 networking.wireless.athUserRegulatoryDomain = true;
13 };
14
15 testScript = ''
16 assert "CONFIG_ATH_USER_REGD=y" in machine.succeed("zcat /proc/config.gz")
17 '';
18}