tailscale modifications

This commit is contained in:
William 2024-09-23 15:11:33 -03:00
parent 8bcd4fc6b8
commit 1e1079d102
3 changed files with 10 additions and 1 deletions

View file

@ -10,7 +10,10 @@
services = {
fwupd.enable = true;
fstrim.enable = true;
tailscale.enable = true;
tailscale = {
enable = true;
extraUpFlags = [ "--operator=user" ];
};
openssh.enable = true;
keyd = {
enable = true;

View file

@ -4,5 +4,6 @@
imports = [
./boot.nix
./nix.nix
./services.nix
];
}

View file

@ -0,0 +1,5 @@
{ ... }:
{
services.tailscale.extraSetFlags = [ "--advertise-exit-node" ];
}