From 44a773d7782d79e76ee37f25923c2d5c8deac6e4 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Wed, 11 Feb 2026 11:33:14 +0900 Subject: [PATCH 1/2] chore: update nixcord input to 2026-02-10 --- flake.lock | 22 +++++++++++----------- flake.nix | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/flake.lock b/flake.lock index 5ff27c6..2c3b3c6 100644 --- a/flake.lock +++ b/flake.lock @@ -66,11 +66,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1765835352, - "narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=", + "lastModified": 1769996383, + "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "a34fae9c08a15ad73f295041fec82323541400a9", + "rev": "57928607ea566b5db3ad13af0e57e921e6b12381", "type": "github" }, "original": { @@ -237,15 +237,15 @@ ] }, "locked": { - "lastModified": 1769241773, - "narHash": "sha256-KiU37jkiRNghmT0j7HMdET07oMBjKHLdgZnDjAsUpL8=", - "owner": "kaylorben", + "lastModified": 1770761134, + "narHash": "sha256-65Xg7Rfx9Cj/D+OUF7KZUcYSQPbToBDZpqUfFUAKuwc=", + "owner": "FlameFlag", "repo": "nixcord", - "rev": "373c02891c905d62efd342dd069fc84bcbd01798", + "rev": "f77d6e05efd34581cbc30e7f426496285711bcde", "type": "github" }, "original": { - "owner": "kaylorben", + "owner": "FlameFlag", "repo": "nixcord", "type": "github" } @@ -290,11 +290,11 @@ }, "nixpkgs-lib": { "locked": { - "lastModified": 1765674936, - "narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=", + "lastModified": 1769909678, + "narHash": "sha256-cBEymOf4/o3FD5AZnzC3J9hLbiZ+QDT/KDuyHXVJOpM=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85", + "rev": "72716169fe93074c333e8d0173151350670b824c", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 1cbc4c3..8517846 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; nixcord = { - url = "github:kaylorben/nixcord"; + url = "github:FlameFlag/nixcord"; inputs.nixpkgs.follows = "nixpkgs"; }; nix-flatpak.url = "github:gmodena/nix-flatpak"; From 5344beda13b5b067565ad88d19584076a4fe290b Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Wed, 11 Feb 2026 11:48:48 +0900 Subject: [PATCH 2/2] feat(nixcord): switch from vesktop to equicord - Enable programs.nixcord.discord.equicord - Enable Equicord-only plugins - Remove vesktop from xdg default applications - Change class name in deafen mouse-action --- home/modules/graphical/mouse-actions/actions/deafen.nix | 2 +- home/modules/graphical/nixcord.nix | 7 +++++-- home/modules/graphical/xdg.nix | 1 - 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/home/modules/graphical/mouse-actions/actions/deafen.nix b/home/modules/graphical/mouse-actions/actions/deafen.nix index 8a32f3a..0c79c3a 100644 --- a/home/modules/graphical/mouse-actions/actions/deafen.nix +++ b/home/modules/graphical/mouse-actions/actions/deafen.nix @@ -2,6 +2,6 @@ { package = pkgs.writeShellScriptBin "deafen-action" '' - ${pkgs.hyprland}/bin/hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(vesktop)$' + ${pkgs.hyprland}/bin/hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(discord)$' ''; } diff --git a/home/modules/graphical/nixcord.nix b/home/modules/graphical/nixcord.nix index a8686f3..6b12788 100644 --- a/home/modules/graphical/nixcord.nix +++ b/home/modules/graphical/nixcord.nix @@ -1,8 +1,8 @@ { programs.nixcord = { enable = true; - discord.enable = false; - vesktop.enable = true; + discord.vencord.enable = false; + discord.equicord.enable = true; config = { plugins = { biggerStreamPreview.enable = true; @@ -27,6 +27,9 @@ webKeybinds.enable = true; webScreenShareFixes.enable = true; youtubeAdblock.enable = true; + limitMiddleClickPaste.enable = true; + mediaPlaybackSpeed.enable = true; + pinIcon.enable = true; }; }; }; diff --git a/home/modules/graphical/xdg.nix b/home/modules/graphical/xdg.nix index 8f94cb4..b70b0be 100644 --- a/home/modules/graphical/xdg.nix +++ b/home/modules/graphical/xdg.nix @@ -7,7 +7,6 @@ defaultApplications = { "x-scheme-handler/roblox-player" = "org.vinegarhq.Sober.desktop"; "x-scheme-handler/roblox-studio" = "org.vinegarhq.Vinegar.studio.desktop"; - "x-scheme-handler/discord" = "vesktop.desktop"; "x-scheme-handler/roblox-studio-auth" = "org.vinegarhq.Vinegar.studio.desktop"; }; };