feat: add tailscale systray
This commit is contained in:
parent
dc8c0a821c
commit
9b7e3f77f0
3 changed files with 41 additions and 16 deletions
|
@ -4,7 +4,7 @@ default_install_hook_types:
|
|||
|
||||
repos:
|
||||
- repo: https://github.com/gitleaks/gitleaks
|
||||
rev: v8.18.2
|
||||
rev: v8.21.2
|
||||
hooks:
|
||||
- id: gitleaks
|
||||
stages: [pre-commit]
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
}:
|
||||
{
|
||||
config = lib.mkIf config.security.polkit.enable {
|
||||
systemd = {
|
||||
user.services.polkit-gnome-authentication-agent-1 = {
|
||||
systemd.user.services.polkit-gnome-authentication-agent-1 = {
|
||||
description = "polkit-gnome-authentication-agent-1";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
wants = [ "graphical-session.target" ];
|
||||
|
@ -21,5 +20,4 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib)
|
||||
mkIf
|
||||
|
@ -22,6 +27,7 @@ in
|
|||
server = mkOption {
|
||||
type = str;
|
||||
default = "https://hs.ccnlc.eu";
|
||||
description = "The coordination server tailscale should be using.";
|
||||
};
|
||||
|
||||
isExitNode = mkOption {
|
||||
|
@ -48,6 +54,12 @@ in
|
|||
type = listOf str;
|
||||
default = [ ];
|
||||
};
|
||||
|
||||
systemTray = mkOption {
|
||||
type = bool;
|
||||
default = true;
|
||||
description = "Display a system tray icon to interact with tailscale.";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -69,6 +81,21 @@ in
|
|||
];
|
||||
useRoutingFeatures = mkIf cfg.isExitNode "server";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services.tailscale-system-tray = mkIf cfg.systemTray {
|
||||
description = "tailscale system tray";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
wants = [ "graphical-session.target" ];
|
||||
after = [ "graphical-session.target" ];
|
||||
path = [ pkgs.polkit ];
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "/bin/sh -lc ${pkgs.tailscale-systray}/bin/tailscale-systray";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
IPAddressDeny = "any";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue