diff options
| author | schererleander <leander@schererleander.de> | 2025-08-02 12:31:18 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-08-02 12:34:47 +0200 |
| commit | db7e8fb82766f751d809a80b9f8846750d2a1867 (patch) | |
| tree | 7b9c4aa7eff9fdc17218700d419510ea4b58736c /modules/home-manager | |
| parent | 8671b61a2af043efd78b00df4821cc8c840266dd (diff) | |
feat: disable vesktop, change plugins
Diffstat (limited to 'modules/home-manager')
| -rw-r--r-- | modules/home-manager/nixcord.nix | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix index 26cd39c..92935c9 100644 --- a/modules/home-manager/nixcord.nix +++ b/modules/home-manager/nixcord.nix @@ -8,22 +8,23 @@ options.nixcord.enable = lib.mkEnableOption "Enable nixcord and setup"; config = lib.mkIf config.nixcord.enable { programs.nixcord = { - enable = true; # enable Nixcord. Also installs discord package + enable = true; + #discord.enable = false; + #vesktop.enable = true; #quickCss = "some CSS"; # quickCSS file config = { #useQuickCss = true; # use our quickCSS - #themeLinks = [ # or use an online theme - # "https://raw.githubusercontent.com/link/to/some/theme.css" - #]; + themeLinks = [ + # or use an online theme + "https://refact0r.github.io/system24/theme/system24.theme.css" + ]; frameless = true; # set some Vencord options plugins = { - hideAttachments.enable = true; # Enable a Vencord plugin - ignoreActivities = { - # Enable a plugin and set some options - enable = true; - ignorePlaying = true; - ignoreWatching = true; - }; + alwaysAnimate.enable = false; + hideAttachments.enable = true; + imageLink.enable = true; + imageZoom.enable = true; + translate.enable = true; }; }; }; |
