10 lines
165 B
Nix
10 lines
165 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.tailscale =
|
|
{ pkgs, lib, ... }:
|
|
{
|
|
config = {
|
|
services.tailscale.enable = true;
|
|
};
|
|
};
|
|
}
|