mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
14 lines
147 B
Nix
14 lines
147 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
services = {
|
|
tailscale.enable = xlib.device.type != "wsl"; # true, if not wsl
|
|
};
|
|
}
|