12 lines
164 B
Nix
12 lines
164 B
Nix
{
|
|
self,
|
|
moduleWithSystem,
|
|
...
|
|
}: {
|
|
flake.nixosModules.tailscale = moduleWithSystem ({...}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
};
|
|
});
|
|
}
|