feat: added proton client

This commit is contained in:
Nick 2025-11-26 18:55:48 -06:00
parent fb113fd8c7
commit d92743dad4
3 changed files with 13 additions and 0 deletions

0
modules/home/cli/utilities/tshark/default.nix Normal file → Executable file
View file

View file

@ -57,6 +57,7 @@ in
opencloud
printManager
prismLauncher
proton
puddleTag
scrcpy
sharing
@ -103,6 +104,7 @@ in
okular
printManager
prismLauncher
proton
scrcpy
sharing
signal

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
protonvpn-gui
;
};
}