dotfiles/nixos/services/tailscale.nix
2024-11-07 16:25:41 -07:00

10 lines
168 B
Nix

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