nixosTests.systemd-networkd: remove wireguard kernel module

config.boot.kernelPackages.wireguard evaluates to null on machine
closure having a > 5.6 Linux kernels, hence making the evaluation of
this test fail.

Wireguard is now part of the mainline Linux kernel, we do not need to
to add it via a additional kernel module anymore for this test.
wip/little-gl
Félix Baylac-Jacqué 3 years ago
parent 8eed0e2095
commit 524ff40291
No known key found for this signature in database
GPG Key ID: EFD315F31848DBA4
  1. 1
      nixos/tests/systemd-networkd.nix

@ -6,7 +6,6 @@ let generateNodeConf = { lib, pkgs, config, privk, pubk, peerId, nodeId, ...}: {
networking.firewall.enable = false;
virtualisation.vlans = [ 1 ];
environment.systemPackages = with pkgs; [ wireguard-tools ];
boot.extraModulePackages = [ config.boot.kernelPackages.wireguard ];
systemd.network = {
enable = true;
netdevs = {

Loading…
Cancel
Save