infrastructure/hosts/neodymium/home/discord/default.nix

17 lines
388 B
Nix
Raw Normal View History

2023-04-08 13:53:58 +00:00
{ pkgs, ... }:
let
catppuccin-discord = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "discord";
2023-04-17 19:10:25 +00:00
rev = "b60ff8909af38673ea75831cf513679c3eb94493";
sha256 = "1xff3kwy6zqn9i83mj2rq65033c34kbxi9qjj7qi7bc1j9ribyxc";
2023-04-08 13:53:58 +00:00
};
in {
programs.webcord = {
enable = true;
themes = {
CatpuccinMocha = "${catppuccin-discord}/themes/mocha.theme.css";
};
};
}