mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 11:30:20 +00:00
9 lines
166 B
Nix
9 lines
166 B
Nix
{ pkgs, ... }: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "client";
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
trayscale
|
|
];
|
|
}
|