10 lines
120 B
Nix
10 lines
120 B
Nix
{ pkgs, ...}:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
tailscale
|
|
];
|
|
|
|
services.tailscale.enable = true;
|
|
}
|