Compare commits

...

2 Commits

Author SHA1 Message Date
bf3134c5cb
feat(nix/host/orion): enable globalprotect vpn
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s
2024-05-29 17:53:57 -05:00
a45ee53e49
refactor(nix/host/orion): set DNSOverTLS to opportunistic 2024-05-29 17:53:57 -05:00
2 changed files with 7 additions and 1 deletions

View File

@ -44,7 +44,7 @@ in
Cache=yes
CacheFromLocalhost=no
DNSSEC=allow-downgrade
DNSOverTLS=yes
DNSOverTLS=opportunistic
MulticastDNS=yes
'';
};

View File

@ -0,0 +1,6 @@
{ pkgs, ... }: {
services.globalprotect.enable = true;
environment.systemPackages = with pkgs; [
globalprotect-openconnect
];
}