chore: move tailscale into networking

This commit is contained in:
notohh 2023-04-02 10:42:50 -04:00
parent e4ab80df8f
commit d8c2d13eb6
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 4 additions and 8 deletions

View file

@ -2,7 +2,6 @@
... ...
}: { }: {
imports = [ imports = [
./tailscale.nix
./security.nix ./security.nix
./udevd.nix ./udevd.nix
./networking.nix ./networking.nix

View file

@ -11,4 +11,8 @@
environment.etc = { environment.etc = {
"resolv.conf".text = "nameserver 192.168.1.86\n"; "resolv.conf".text = "nameserver 192.168.1.86\n";
}; };
services.tailscale = {
enable = true;
};
} }

View file

@ -1,7 +0,0 @@
{
...
}: {
services.tailscale = {
enable = true;
};
}