From b2b1a8c052bade759c2dd91d28b7dc328434d563 Mon Sep 17 00:00:00 2001 From: oddlama Date: Sat, 7 Jun 2025 17:04:50 +0200 Subject: [PATCH] nixos/firezone-gui-client: adjust to renamed tunnel service binary --- .../modules/services/networking/firezone/gui-client.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/networking/firezone/gui-client.nix b/nixos/modules/services/networking/firezone/gui-client.nix index 8ddb4223111f..129a43e492ca 100644 --- a/nixos/modules/services/networking/firezone/gui-client.nix +++ b/nixos/modules/services/networking/firezone/gui-client.nix @@ -6,7 +6,6 @@ }: let inherit (lib) - boolToString getExe' mkEnableOption mkIf @@ -28,7 +27,7 @@ in default = [ ]; description = '' All listed users will become part of the `firezone-client` group so - they can control the IPC service. This is a convenience option. + they can control the tunnel service. This is a convenience option. ''; }; @@ -58,8 +57,8 @@ in # Required for the token store in the gui application services.gnome.gnome-keyring.enable = true; - systemd.services.firezone-ipc-service = { - description = "GUI IPC service for the Firezone zero-trust access platform"; + systemd.services.firezone-tunnel-service = { + description = "GUI tunnel service for the Firezone zero-trust access platform"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; @@ -73,7 +72,7 @@ in export FIREZONE_ID=$(< client_id) fi - exec ${getExe' cfg.package "firezone-client-ipc"} run + exec ${getExe' cfg.package "firezone-client-tunnel"} run ''; environment = {