mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 16:03:32 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
75 lines
2.1 KiB
Nix
75 lines
2.1 KiB
Nix
import ../make-test-python.nix (
|
|
{
|
|
pkgs,
|
|
lib,
|
|
kernelPackages ? null,
|
|
...
|
|
}:
|
|
{
|
|
name = "wireguard-generated";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [
|
|
ma27
|
|
grahamc
|
|
];
|
|
};
|
|
|
|
nodes = {
|
|
peer1 = {
|
|
boot = lib.mkIf (kernelPackages != null) { inherit kernelPackages; };
|
|
networking.firewall.allowedUDPPorts = [ 12345 ];
|
|
networking.wireguard.interfaces.wg0 = {
|
|
ips = [ "10.10.10.1/24" ];
|
|
listenPort = 12345;
|
|
privateKeyFile = "/etc/wireguard/private";
|
|
generatePrivateKeyFile = true;
|
|
|
|
};
|
|
};
|
|
|
|
peer2 = {
|
|
boot = lib.mkIf (kernelPackages != null) { inherit kernelPackages; };
|
|
networking.firewall.allowedUDPPorts = [ 12345 ];
|
|
networking.wireguard.interfaces.wg0 = {
|
|
ips = [ "10.10.10.2/24" ];
|
|
listenPort = 12345;
|
|
privateKeyFile = "/etc/wireguard/private";
|
|
generatePrivateKeyFile = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
|
|
peer1.wait_for_unit("wireguard-wg0.service")
|
|
peer2.wait_for_unit("wireguard-wg0.service")
|
|
|
|
retcode, peer1pubkey = peer1.execute("wg pubkey < /etc/wireguard/private")
|
|
if retcode != 0:
|
|
raise Exception("Could not read public key from peer1")
|
|
|
|
retcode, peer2pubkey = peer2.execute("wg pubkey < /etc/wireguard/private")
|
|
if retcode != 0:
|
|
raise Exception("Could not read public key from peer2")
|
|
|
|
peer1.succeed(
|
|
"wg set wg0 peer {} allowed-ips 10.10.10.2/32 endpoint 192.168.1.2:12345 persistent-keepalive 1".format(
|
|
peer2pubkey.strip()
|
|
)
|
|
)
|
|
peer1.succeed("ip route replace 10.10.10.2/32 dev wg0 table main")
|
|
|
|
peer2.succeed(
|
|
"wg set wg0 peer {} allowed-ips 10.10.10.1/32 endpoint 192.168.1.1:12345 persistent-keepalive 1".format(
|
|
peer1pubkey.strip()
|
|
)
|
|
)
|
|
peer2.succeed("ip route replace 10.10.10.1/32 dev wg0 table main")
|
|
|
|
peer1.succeed("ping -c1 10.10.10.2")
|
|
peer2.succeed("ping -c1 10.10.10.1")
|
|
'';
|
|
}
|
|
)
|