summaryrefslogtreecommitdiff
path: root/config/networking.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/networking.nix')
-rw-r--r--config/networking.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/config/networking.nix b/config/networking.nix
index 9865f01..da38792 100644
--- a/config/networking.nix
+++ b/config/networking.nix
@@ -1,4 +1,5 @@
-{...}: {
+{ ... }:
+{
personal.networking = {
enable = true;
firewall.http = true;
@@ -13,12 +14,17 @@
enable = true;
secretsFile = "/etc/wpa_supplicant/secrets";
networks.Quentintranet = {
- authProtocols = ["SAE"];
+ authProtocols = [ "SAE" ];
pskRaw = "ext:psk";
};
};
};
+ services.resolved = {
+ enable = true;
+ dnsovertls = "opportunistic";
+ };
+
services.tailscale = {
enable = true;
openFirewall = true;