10 lines
168 B
Nix
10 lines
168 B
Nix
#
|
|
# Tailscale service configuration.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{ pkgs, ... }:
|
|
{
|
|
services.tailscale.enable = true;
|
|
environment.systemPackages = [ pkgs.tailscale ];
|
|
}
|