change files structure

This commit is contained in:
Frost-Phoenix 2024-04-06 14:02:42 +02:00
parent f3a6ce6554
commit 736048f9e5
24 changed files with 28 additions and 31 deletions

21
modules/home/discord.nix Normal file
View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
(discord.override {
withVencord = true;
})
];
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");
'';
}