mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
10 lines
116 B
Nix
Executable File
10 lines
116 B
Nix
Executable File
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
services = {
|
|
tailscale.enable = config.device.type != "wsl"; # true, if not wsl
|
|
};
|
|
}
|