mirror of
https://github.com/RGBCube/ncc
synced 2026-01-17 10:41:04 +00:00
5 lines
150 B
Nix
5 lines
150 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib) optionalString;
|
|
in {
|
|
environment.shellAliases.ts = "${optionalString config.isLinux "sudo "}tailscale";
|
|
}
|