Add wgh wireguard network.

This commit is contained in:
Tom Alexander 2024-12-28 21:05:45 -05:00
parent 720164497d
commit ce8718b042
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 32 additions and 3 deletions

View File

@ -17,4 +17,7 @@
# Early KMS # Early KMS
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];
# Mount tmpfs at /tmp
boot.tmp.useTmpfs = true;
} }

View File

@ -7,6 +7,23 @@
{ {
imports = [ ]; imports = [ ];
nix.settings.system-features = lib.mkForce [
"gccarch-znver4"
"gccarch-skylake"
# "gccarch-alderlake" missing pkgwait
"gccarch-x86-64-v3"
"benchmark"
"big-parallel"
"kvm"
"nixos-test"
];
# nixpkgs.hostPlatform = {
# gcc.arch = "znver4";
# gcc.tune = "znver4";
# system = "x86_64-linux";
# };
nixpkgs.overlays = [ nixpkgs.overlays = [
( (
self: super: self: super:

View File

@ -10,14 +10,23 @@
networking.firewall.allowedUDPPorts = [ 51821 ]; networking.firewall.allowedUDPPorts = [ 51821 ];
networking.wireguard.enable = true; networking.wireguard.enable = true;
networking.wg-quick.interfaces.wg0.configFile = "/persist/manual/wireguard/drmario.conf"; networking.wg-quick.interfaces.drmario.configFile = "/persist/manual/wireguard/drmario.conf";
systemd.services."wg-quick-wg0".after = [ systemd.services."wg-quick-drmario".after = [
"nss-lookup.target" "nss-lookup.target"
"systemd-resolved.service" "systemd-resolved.service"
"multi-user.target" "multi-user.target"
]; ];
systemd.services."wg-quick-wg0".preStart = "${pkgs.toybox}/bin/sleep 10"; systemd.services."wg-quick-drmario".preStart = "${pkgs.toybox}/bin/sleep 10";
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"
];
systemd.services."wg-quick-wgh".preStart = "${pkgs.toybox}/bin/sleep 10";
# environment.systemPackages = with pkgs; [ # environment.systemPackages = with pkgs; [
# wireguard-tools # wireguard-tools