move tailscale setting to its proper place

This commit is contained in:
Sean Kovacs 2026-01-05 17:48:23 -05:00
commit a6ddd527d4
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 5 additions and 4 deletions

View file

@ -149,10 +149,6 @@
enableHidpi = true;
};
libinput.enable = true;
tailscale = {
enable = true;
useRoutingFeatures = "client";
};
printing.enable = true;
pipewire = {
enable = true;

View file

@ -24,4 +24,9 @@ in {
ExecStartPost = tailscaleWaitScript;
};
};
services.tailscale = {
enable = true;
useRoutingFeatures = "client";
};
}