From db88d50e8924cba8b424c0ea7546b81baccd9c5c Mon Sep 17 00:00:00 2001 From: schererleander Date: Tue, 29 Apr 2025 16:59:25 +0200 Subject: initial commit --- modules/home-manager/vencord.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/home-manager/vencord.nix (limited to 'modules/home-manager/vencord.nix') diff --git a/modules/home-manager/vencord.nix b/modules/home-manager/vencord.nix new file mode 100644 index 0000000..8b085c4 --- /dev/null +++ b/modules/home-manager/vencord.nix @@ -0,0 +1,22 @@ +{ 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; + }; + }; + }; + }; +} -- cgit v1.3.1