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