nixos-config/modules/home/discord.nix

21 lines
532 B
Nix
Raw Normal View History

2024-04-06 14:02:42 +02:00
{ pkgs, ... }:
2023-12-14 17:17:45 +01:00
{
2024-04-06 14:02:42 +02:00
home.packages = with pkgs; [
(discord.override {
withVencord = true;
})
];
2023-12-14 17:33:29 +01:00
xdg.configFile."Vencord/themes/custom.css".text = ''
/**
* @name Catppuccin Mocha
* @author winston#0001
* @authorId 505490445468696576
* @version 0.2.0
* @description 🎮 Soothing pastel theme for Discord
* @website https://github.com/catppuccin/discord
* @invite r6Mdz5dpFc
* **/
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css");
'';
2023-12-14 17:17:45 +01:00
}