23 lines
535 B
Nix
23 lines
535 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
extraUpFlags = [ "--ssh" ];
|
|
useRoutingFeatures = "client";
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.tail-tray ]; # or pkgs.trayscale
|
|
|
|
# systemd.user.services.tail-tray = {
|
|
# description = "Tailscale tray (Plasma)";
|
|
# wantedBy = [ "graphical-session.target" ];
|
|
# after = [ "graphical-session.target" ];
|
|
# serviceConfig = {
|
|
# ExecStart = "${pkgs.tail-tray}/bin/tail-tray";
|
|
# Restart = "on-failure";
|
|
# };
|
|
# };
|
|
}
|