feat(networking): enable tailscale

This commit is contained in:
Lucien Cartier-Tilet 2025-09-01 14:53:46 +02:00
parent 28c430568d
commit 975a92eaae
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./networking.nix ./networking.nix
./tailscale.nix
]; ];
} }

View File

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