From bc4e75d954e13e7f82a255571d1a214626e5987b Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Wed, 27 Apr 2022 13:36:31 -0400 Subject: [PATCH] Remove VPN and change mount partition for Windows --- nki-home/configuration.nix | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/nki-home/configuration.nix b/nki-home/configuration.nix index c2baca5..5909ed2 100644 --- a/nki-home/configuration.nix +++ b/nki-home/configuration.nix @@ -184,25 +184,6 @@ # Peripherals hardware.opentabletdriver.enable = true; - # VPN - sops.secrets."windscribe/privateKey" = { mode = "0755"; }; - sops.secrets."windscribe/presharedKey" = { mode = "0755"; }; - networking.wg-quick.interfaces = { - windscribe = { - privateKeyFile = config.sops.secrets."windscribe/privateKey".path; - address = [ "100.70.42.56/32" ]; - dns = [ "10.255.255.2" ]; - peers = [ - { - allowedIPs = [ "0.0.0.0/0" ]; - endpoint = "yyz-197-wg.whiskergalaxy.com:443"; - presharedKeyFile = config.sops.secrets."windscribe/presharedKey".path; - publicKey = "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg="; - } - ]; - }; - }; - # Mounting disks! fileSystems = let @@ -214,7 +195,7 @@ in { "/mnt/Data" = ntfsMount "/dev/disk/by-uuid/A90680F8BBE62FE3"; - "/mnt/Windows" = ntfsMount "/dev/disk/by-uuid/C2F6FBACF6FB9F3B"; + "/mnt/Windows" = ntfsMount "/dev/disk/by-uuid/F4EA78DCEA789D14"; "/mnt/Stuff" = ntfsMount "/dev/disk/by-uuid/717BF2EE20BB8A62"; "/mnt/Shared" = ntfsMount "/dev/disk/by-uuid/76AC086BAC0827E7"; };