tailscale modifications
This commit is contained in:
parent
8bcd4fc6b8
commit
1e1079d102
3 changed files with 10 additions and 1 deletions
|
|
@ -10,7 +10,10 @@
|
||||||
services = {
|
services = {
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
fstrim.enable = true;
|
fstrim.enable = true;
|
||||||
tailscale.enable = true;
|
tailscale = {
|
||||||
|
enable = true;
|
||||||
|
extraUpFlags = [ "--operator=user" ];
|
||||||
|
};
|
||||||
openssh.enable = true;
|
openssh.enable = true;
|
||||||
keyd = {
|
keyd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./boot.nix
|
./boot.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
|
./services.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
5
hosts/servers/common/services.nix
Normal file
5
hosts/servers/common/services.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.tailscale.extraSetFlags = [ "--advertise-exit-node" ];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue