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