Format
Some checks failed
/ test (push) Failing after 27m3s

This commit is contained in:
Andrea Ciceri 2025-02-27 09:52:42 +01:00
parent 74ff7d0cff
commit 9601ff024b
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 8 additions and 6 deletions

View file

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

View file

@ -35,8 +35,8 @@ in
credential.credentialStore = "cache"; credential.credentialStore = "cache";
core = { core = {
fsmonitor = true; fsmonitor = true;
untrackedcache = true; untrackedcache = true;
}; };
fetch.writeCommitGraph = true; fetch.writeCommitGraph = true;
}; };