Stop discord from auto-updating
diff --git a/src/apps/personal/discord.nix b/src/apps/personal/discord.nix
index 73647b6..81b06df 100644
--- a/src/apps/personal/discord.nix
+++ b/src/apps/personal/discord.nix
@@ -1,6 +1,19 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
discord
- discord-ptb
];
+
+ home.file.".config/discord/settings.json" = builtins.toJSON {
+ IS_MAXIMIZED = true;
+ IS_MINIMIZED = false;
+ BACKGROUND_COLOR = "#202225";
+ WINDOW_BOUNDS = {
+ x = 485;
+ y = 2341;
+ width = 950;
+ height = 762;
+ };
+ DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING = true;
+ SKIP_HOST_UPDATE = true;
+ };
}