From d92743dad40b100466f5a3be2075d5da72e01d81 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 26 Nov 2025 18:55:48 -0600 Subject: [PATCH] feat: added proton client --- modules/home/cli/utilities/tshark/default.nix | 0 modules/home/default.nix | 2 ++ modules/home/gui/apps/tools/proton/default.nix | 11 +++++++++++ 3 files changed, 13 insertions(+) mode change 100644 => 100755 modules/home/cli/utilities/tshark/default.nix create mode 100755 modules/home/gui/apps/tools/proton/default.nix diff --git a/modules/home/cli/utilities/tshark/default.nix b/modules/home/cli/utilities/tshark/default.nix old mode 100644 new mode 100755 diff --git a/modules/home/default.nix b/modules/home/default.nix index a728511..b42f50e 100755 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -57,6 +57,7 @@ in opencloud printManager prismLauncher + proton puddleTag scrcpy sharing @@ -103,6 +104,7 @@ in okular printManager prismLauncher + proton scrcpy sharing signal diff --git a/modules/home/gui/apps/tools/proton/default.nix b/modules/home/gui/apps/tools/proton/default.nix new file mode 100755 index 0000000..6566642 --- /dev/null +++ b/modules/home/gui/apps/tools/proton/default.nix @@ -0,0 +1,11 @@ +{ + pkgs, + ... +}: +{ + home.packages = builtins.attrValues { + inherit (pkgs) + protonvpn-gui + ; + }; +}