From 049146863e333db4a81266cbde09d67a432574b5 Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 17 Mar 2026 14:32:11 -0400 Subject: home-manager: replace vesktop with nix-discord equibop --- home-manager/features/gui/apps/discord.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 home-manager/features/gui/apps/discord.nix (limited to 'home-manager/features') diff --git a/home-manager/features/gui/apps/discord.nix b/home-manager/features/gui/apps/discord.nix new file mode 100644 index 0000000..f42a852 --- /dev/null +++ b/home-manager/features/gui/apps/discord.nix @@ -0,0 +1,19 @@ +{ config, lib, inputs, ... }: let + cfg = config.features.gui.apps.discord; +in { + imports = [ inputs.nixcord.homeModules.nixcord ]; + options.features.gui.apps.disord.enable = lib.mkEnableOption "discord"; + config = lib.mkIf cfg.enable { + programs.nixcord = { + enable = true; + equibop.enable = true; + plugins = { + loadingQuotes.enable = true; # Replaces loading quotes + homeTyping.enable = true; # Typing icon replaces home icon when someone is typing in dms + keyboardNavigation.enable = true; # Adds command palette for keyboard nav + findReply = true; # Adds a button to find the earliest reply in a chain. + declutter = true; # Removes discord UI clutter (quests, shop, etc) + }; + }; + }; +} -- cgit v1.2.3