feat: add tailscale systray

This commit is contained in:
Nydragon 2024-11-24 01:23:29 +01:00
parent dc8c0a821c
commit 9b7e3f77f0
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 41 additions and 16 deletions

View file

@ -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]

View file

@ -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 @@
};
};
};
};
}

View file

@ -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";
};
};
};
}