From 03f03eee9f8417b540f0d1b0d1e8a4626d455ac3 Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 3 Nov 2025 00:19:09 +0100 Subject: chore: reorganize modules into subcategories --- modules/home-manager/nixcord.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 modules/home-manager/nixcord.nix (limited to 'modules/home-manager/nixcord.nix') diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix deleted file mode 100644 index 3655d17..0000000 --- a/modules/home-manager/nixcord.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - config, - lib, - ... -}: - -{ - options.nixcord.enable = lib.mkEnableOption "Enable nixcord and setup"; - config = lib.mkIf config.nixcord.enable { - programs.nixcord = { - enable = true; - config = { - themeLinks = [ - "https://refact0r.github.io/system24/theme/system24.theme.css" - ]; - frameless = true; - plugins = { - alwaysAnimate.enable = false; - imageLink.enable = true; - imageZoom.enable = true; - translate.enable = true; - }; - }; - }; - }; -} -- cgit v1.3.1