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