summaryrefslogtreecommitdiff
path: root/home-configuration/managed/discord
diff options
context:
space:
mode:
authorcoasteen <coasteen@proton.me>2026-07-09 10:46:52 +0330
committercoasteen <coasteen@proton.me>2026-07-09 10:46:52 +0330
commita3008666c6c75ff61b1fc329b4d962a6c367d5f0 (patch)
treea203a54b3c61884ea13957cf18284f6c83f8e64d /home-configuration/managed/discord
init nixHEADmaster
Diffstat (limited to 'home-configuration/managed/discord')
-rw-r--r--home-configuration/managed/discord/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/home-configuration/managed/discord/default.nix b/home-configuration/managed/discord/default.nix
new file mode 100644
index 0000000..039724d
--- /dev/null
+++ b/home-configuration/managed/discord/default.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }:
+{
+ home.packages = [ pkgs.vesktop ];
+
+ # change the desktop file
+ xdg.desktopEntries.vesktop.comment = "VESKTOP, a Discord client, running on socks5:2080";
+ xdg.desktopEntries.vesktop.name = "Vesktop (Modified)";
+ xdg.desktopEntries.vesktop.genericName = "Discord client";
+ xdg.desktopEntries.vesktop.exec = "vesktop --proxy-server=\"socks5://127.0.0.1:2080 %U\"";
+ xdg.desktopEntries.vesktop.icon = "vesktop";
+ xdg.desktopEntries.vesktop.type = "Application";
+ xdg.desktopEntries.vesktop.categories = [ "Network" "InstantMessaging" ];
+}