Commit 44aa67d86093

Vincent Demeester <vincent@sbr.pm>
2026-01-08 15:22:59
feat(kyushu): Add Red Hat VPN desktop launcher
- Enable quick VPN connection from application menu - Improve workflow by removing need for terminal commands - Provide standard GUI integration for Red Hat work Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 56f5521
Changed files (3)
home
systems
kyushu
home/common/services/redhat-vpn.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Red Hat VPN
+Comment=Connect to Red Hat VPN
+Exec=redhat-vpn
+Type=Application
+Terminal=false
+Categories=Network;
+Icon=network-vpn;
home/common/services/redhat.nix
@@ -0,0 +1,5 @@
+{ ... }:
+{
+  # Red Hat VPN desktop launcher
+  home.file.".local/share/applications/redhat-vpn.desktop".source = ./redhat-vpn.desktop;
+}
systems/kyushu/home.nix
@@ -11,6 +11,7 @@ in
     ../../home/common/dev/containers.nix
     ../../home/common/dev/tektoncd.nix
     ../../home/common/services/color-scheme-timer.nix
+    ../../home/common/services/redhat.nix
   ];
   nixpkgs.config.allowUnfree = true;