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 +++++++++++++++++++ home-manager/users/thinkpad-laptop/lucia.nix | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 home-manager/features/gui/apps/discord.nix (limited to 'home-manager') 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) + }; + }; + }; +} diff --git a/home-manager/users/thinkpad-laptop/lucia.nix b/home-manager/users/thinkpad-laptop/lucia.nix index 49eb98a..53f3934 100644 --- a/home-manager/users/thinkpad-laptop/lucia.nix +++ b/home-manager/users/thinkpad-laptop/lucia.nix @@ -35,7 +35,7 @@ apps = { foot.enable = true; librewolf.enable = true; - vesktop.enable = true; + discord.enable = true; anki.enable = true; }; bundles = { -- cgit v1.2.3