diff options
| author | schererleander <leander@schererleander.de> | 2025-04-29 19:13:19 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-04-29 19:13:19 +0200 |
| commit | 8342f3abaf4167aec9845c173e3325f4fc80a2c3 (patch) | |
| tree | 7b2fff29a9191e7bb07fb36ccd1af24dffd69181 /modules/home-manager/nixcord.nix | |
| parent | db88d50e8924cba8b424c0ea7546b81baccd9c5c (diff) | |
update spicetify nixcord
Diffstat (limited to 'modules/home-manager/nixcord.nix')
| -rw-r--r-- | modules/home-manager/nixcord.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix new file mode 100644 index 0000000..8b085c4 --- /dev/null +++ b/modules/home-manager/nixcord.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; + }; + }; + }; + }; +} |
