dotfiles/modules/applications/discord.nix

20 lines
509 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-29 02:43:50 +00:00
config = lib.mkIf config.gui.enable {
2022-06-05 01:08:09 +00:00
unfreePackages = [ "discord" ];
home-manager.users.${config.user} = {
2022-04-29 02:43:50 +00:00
home.packages = with pkgs; [ discord ];
2022-06-14 00:29:49 +00:00
xdg.configFile."discord/settings.json".text = ''
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"OPEN_ON_STARTUP": false,
"MINIMIZE_TO_TRAY": false,
"SKIP_HOST_UPDATE": true
}
'';
2022-04-29 02:43:50 +00:00
};
};
}