nixfleet/hmModules/discord/default.nix
Andrea Ciceri 9601ff024b
Some checks failed
/ test (push) Failing after 27m3s
Format
2025-02-27 09:52:42 +01:00

12 lines
236 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;
};
}