revert to sajenim

This commit is contained in:
♥ Minnie ♥ 2023-11-06 18:10:48 +08:00
parent 7564df522d
commit 41ea3478ec
14 changed files with 7 additions and 7 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;
};
}