aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/nixcord.nix
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-04-29 20:41:52 +0200
committerschererleander <leander@schererleander.de>2025-04-29 20:41:52 +0200
commit5db06024d727b2ca11f03d3ea6153a7946d8f720 (patch)
treebe1106562808a4197a1f489d073f7085c46f5078 /modules/home-manager/nixcord.nix
parentec0137a61d11c12cdef8e1dbd515315077be9c72 (diff)
move modules
Diffstat (limited to 'modules/home-manager/nixcord.nix')
-rw-r--r--modules/home-manager/nixcord.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix
deleted file mode 100644
index 8b085c4..0000000
--- a/modules/home-manager/nixcord.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, lib, pkgs, inputs, ... }:
-
-let
- cfg = config.nixcord;
-in {
- options.nixcord.enable = lib.mkEnableOption "Enable nixord and setup";
- config = lib.mkIf cfg.enable {
- programs.nixcord = {
- enable = true;
- config = {
- themeLinks = [
- "https://github.com/TheCommieAxolotl/BetterDiscord-Stuff/blob/main/Ultra/Ultra.theme.css"
- ];
- frameless = true;
- plugins = {
- alwaysAnimate.enable = true;
- clearURLs.enable = true;
- };
- };
- };
- };
-}