Add discord module and disable update check
This commit is contained in:
parent
158f5f1449
commit
2b3d628b8d
2 changed files with 13 additions and 1 deletions
12
home-manager/modules/discord.nix
Normal file
12
home-manager/modules/discord.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = [pkgs.discord];
|
||||
|
||||
home.file.".config/discord/settings.json" = {
|
||||
text = builtins.toJSON {
|
||||
"BACKGROUND_COLOR" = "#202225";
|
||||
"IS_MAXIMIZED" = true;
|
||||
"IS_MINIMIZED" = false;
|
||||
"SKIP_HOST_UPDATE" = true; # Disables the update check on startup
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue