38 lines
912 B
Nix
Raw Normal View History

2024-12-27 15:44:00 -05:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = lib.mkIf (!config.me.buildingIso) {
networking.firewall.allowedUDPPorts = [ 51821 ];
networking.wireguard.enable = true;
networking.wg-quick.interfaces.drmario.configFile = "/persist/manual/wireguard/drmario.conf";
systemd.services."wg-quick-drmario".after = [
"nss-lookup.target"
"systemd-resolved.service"
"multi-user.target"
];
2024-12-27 15:44:00 -05:00
systemd.services."wg-quick-drmario".preStart = "${pkgs.toybox}/bin/sleep 10";
2024-12-28 21:05:45 -05:00
networking.wg-quick.interfaces.wgh.configFile = "/persist/manual/wireguard/wgh.conf";
systemd.services."wg-quick-wgh".after = [
"nss-lookup.target"
"systemd-resolved.service"
"multi-user.target"
];
2024-12-28 21:05:45 -05:00
systemd.services."wg-quick-wgh".preStart = "${pkgs.toybox}/bin/sleep 10";
};
2024-12-27 15:44:00 -05:00
# environment.systemPackages = with pkgs; [
# wireguard-tools
# ];
}