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-05-21 07:29:58 +00:00
rev = "be898e83d7bbf6eed94e3edca09cd68786e06c2a";
sha256 = "1a2czbhcwagygihhscrzqy4argsqrcdcjjgdrscp3ip5619k9mxn";
2023-04-08 13:53:58 +00:00
};
in {
programs.webcord = {
enable = true;
themes = {
CatpuccinMocha = "${catppuccin-discord}/themes/mocha.theme.css";
};
};
}