diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-12-03 02:52:28 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-12-03 02:52:28 +0300 |
commit | cec9f7acd5e5e365563212c5144394f71dd90b27 (patch) | |
tree | 667b308a7241ab2e8f3fa4e2b53cc7888e876c68 /nixosConfigurations | |
parent | 2023-11-29 (diff) |
2023-12-03
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/eonwe/default.nix | 1 | ||||
-rw-r--r-- | nixosConfigurations/manwe/default.nix | 29 |
2 files changed, 0 insertions, 30 deletions
diff --git a/nixosConfigurations/eonwe/default.nix b/nixosConfigurations/eonwe/default.nix index 97ff5e5..a469fff 100644 --- a/nixosConfigurations/eonwe/default.nix +++ b/nixosConfigurations/eonwe/default.nix @@ -86,7 +86,6 @@ with lib; { # parallelisation support enabled, so we will make sure that all cores are # utilised and limit the job queue to one. nix.settings = { - keep-going = true; max-jobs = 1; cores = 32; }; diff --git a/nixosConfigurations/manwe/default.nix b/nixosConfigurations/manwe/default.nix index c2ac8be..d9ec359 100644 --- a/nixosConfigurations/manwe/default.nix +++ b/nixosConfigurations/manwe/default.nix @@ -47,35 +47,6 @@ with lib; { plausible.enable = true; }; - # A VPN to play old LAN games with the boys. - # secrets."wireguard-private-key-70".file = "${inputs.self}/secrets/wireguard-private-key-70"; - # networking = mkIf config.nixfiles.modules.wireguard.server.enable { - # wireguard.interfaces.wg70 = { - # ips = ["10.70.0.1/16"]; - # listenPort = 7070; - # privateKeyFile = config.secrets."wireguard-private-key-70".path; - # peers = [ - # { - # publicKey = "@PUBLIC_KEY@"; - # allowedIPs = ["10.70.1.1/32"]; - # } - # { - # publicKey = "@PUBLIC_KEY@"; - # allowedIPs = ["10.70.1.2/32"]; - # } - # { - # publicKey = "@PUBLIC_KEY@"; - # allowedIPs = ["10.70.1.3/32"]; - # } - # { - # publicKey = "@PUBLIC_KEY@"; - # allowedIPs = ["10.70.1.4/32"]; - # } - # ]; - # }; - # firewall.allowedUDPPorts = [7070]; - # }; - boot = { loader.grub = { enable = true; |