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.
This commit is contained in:
parent
8eed0e2095
commit
524ff40291
|
@ -6,7 +6,6 @@ let generateNodeConf = { lib, pkgs, config, privk, pubk, peerId, nodeId, ...}: {
|
||||||
networking.firewall.enable = false;
|
networking.firewall.enable = false;
|
||||||
virtualisation.vlans = [ 1 ];
|
virtualisation.vlans = [ 1 ];
|
||||||
environment.systemPackages = with pkgs; [ wireguard-tools ];
|
environment.systemPackages = with pkgs; [ wireguard-tools ];
|
||||||
boot.extraModulePackages = [ config.boot.kernelPackages.wireguard ];
|
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
netdevs = {
|
netdevs = {
|
||||||
|
|
Loading…
Reference in New Issue