10 lines
224 B
Nix
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;
|
|
};
|
|
}
|