migrate to betterdiscord

This commit is contained in:
♥ Minnie ♥ 2023-05-23 23:02:47 +08:00
parent 55cfdf3609
commit 15a4645341
4 changed files with 87 additions and 78 deletions

View file

@ -0,0 +1,19 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
nixpkgs.overlays = [
(final: prev: {
discord = prev.discord.override { withOpenASAR = true; };
})
];
home.packages = with pkgs; [
discord
betterdiscordctl
];
home.file.".config/BetterDiscord/data/stable/custom.css" = {
enable = true;
source = ./config/custom.css;
};
}