Set up wireguard.
This commit is contained in:
26
nix/configuration/roles/wireguard/default.nix
Normal file
26
nix/configuration/roles/wireguard/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [ ];
|
||||
|
||||
networking.firewall.allowedUDPPorts = [ 51821 ];
|
||||
networking.wireguard.enable = true;
|
||||
networking.wg-quick.interfaces.wg0.configFile = "/persist/manual/wireguard/drmario.conf";
|
||||
systemd.services."wg-quick-wg0".after = [
|
||||
"nss-lookup.target"
|
||||
"systemd-resolved.service"
|
||||
"multi-user.target"
|
||||
];
|
||||
|
||||
systemd.services."wg-quick-wg0".preStart = "${pkgs.toybox}/bin/sleep 10";
|
||||
|
||||
# environment.systemPackages = with pkgs; [
|
||||
# wireguard-tools
|
||||
# ];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user