11 lines
197 B
Nix
11 lines
197 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
# make the tailscale command usable to users
|
||
|
|
environment.systemPackages = [ pkgs.tailscale ];
|
||
|
|
|
||
|
|
# enable the tailscale service
|
||
|
|
services.tailscale.enable = true;
|
||
|
|
}
|
||
|
|
|