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-16 17:10:14 +00:00
rev = "3b6a4a2f69253dc7d5ea93317d7dce9a0ef24589";
sha256 = "0gzkbbm3q13a77xlsa9zlz846nb05wr9ksra1z1vsvcpqi21gs1s";
2023-04-08 13:53:58 +00:00
};
in {
programs.webcord = {
enable = true;
themes = {
CatpuccinMocha = "${catppuccin-discord}/themes/mocha.theme.css";
};
};
}