Files
dotfiles/nixos/tailscale.nix

11 lines
377 B
Nix
Raw Normal View History

2026-02-13 03:57:41 -08:00
{ config, lib, pkgs, makeEnable, ... }:
makeEnable config "myModules.tailscale" true {
# Provide stable SSH connectivity between your machines without needing port
# forwarding (works behind NAT/CGNAT).
services.tailscale.enable = true;
# Handy even if you only enable the service and run `tailscale up` manually.
environment.systemPackages = [ pkgs.tailscale ];
}