11 lines
187 B
Nix
11 lines
187 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [ inputs.synix.nixosModules.tailscale ];
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
enableSSH = true;
|
|
loginServer = "https://hs.sid.ovh";
|
|
};
|
|
}
|