about summary refs log tree commit diff
path: root/profiles/workstation.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-02 19:30:39 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-02 19:30:39 -0700
commitb6d6b6f366c3cbf7e7340f08ea8877bf0a8d45e7 (patch)
treec45c1011b194c0982ba82c5f2f06d18941a916ca /profiles/workstation.nix
parentprofiles/default: move stuff related to boot (diff)
downloadworld-b6d6b6f366c3cbf7e7340f08ea8877bf0a8d45e7.tar.gz
profiles: consolidates common networking bits
This remove ssh on workstations. I also drop mosh since I don't use it.
Diffstat (limited to '')
-rw-r--r--profiles/workstation.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/profiles/workstation.nix b/profiles/workstation.nix
index f136c33..3b422a6 100644
--- a/profiles/workstation.nix
+++ b/profiles/workstation.nix
@@ -4,6 +4,7 @@
     ./default.nix
     ./documentation.nix
     ./btrfs.nix
+    ./tailscale.nix
   ];
 
   virtualisation.docker.enable = false;
@@ -82,4 +83,8 @@
     pavucontrol
     easyeffects
   ];
+
+  # Use systemd-resolved
+  services.resolved.enable = true;
+  services.resolved.dnssec = "false";
 }