From 90ae7f7660966b1b97708d815eab7b035df8526d Mon Sep 17 00:00:00 2001 From: Lilly Date: Tue, 6 Jan 2026 03:53:20 +0000 Subject: [PATCH] Auto-commit: 2026-01-06 03:53:20 --- home/desktop/nixcord.nix | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/home/desktop/nixcord.nix b/home/desktop/nixcord.nix index e69de29..880936f 100644 --- a/home/desktop/nixcord.nix +++ b/home/desktop/nixcord.nix @@ -0,0 +1,35 @@ + +{ + programs.nixcord = { + enable = true; # Enable Nixcord (It also installs Discord) + discord = { + vencord.enable = false; # Use Vencord (default) + equicord.enable = true; # Or use Equicord instead (cannot enable both) + }; + vesktop.enable = false; # Vesktop + equibop.enable = true; # Equibop + dorion.enable = false; # Dorion + quickCss = "some CSS"; # quickCSS file + config = { + useQuickCss = true; # use out quickCSS + themeLinks = [ # or use an online theme + "https://raw.githubusercontent.com/link/to/some/theme.css" + ]; + frameless = true; # Set some Vencord/Equicord options + plugins = { + hideAttachments.enable = true; # Enable a plugin (works with both Vencord and Equicord) + ignoreActivities = { # Enable a plugin and set some options + enable = true; + ignorePlaying = true; + ignoreWatching = true; + ignoredActivities = [ "someActivity" ]; + }; + }; + }; + extraConfig = { + # Some extra JSON config here + # ... + }; + }; + # ... +} \ No newline at end of file