nixfleet/hmModules/discord/default.nix
2025-02-27 14:06:04 +07:00

10 lines
224 B
Nix

{ pkgs, ... }:
{
home.packages = [ (pkgs.discord.override {
withOpenASAR = true;
withVencord = true;
}) ];
home.file.".config/discord/settings.json".text = builtins.toJSON {
SKIP_HOST_UPDATE = true;
};
}