1
Fork 0
satellite/modules/applications/discord.nix

14 lines
271 B
Nix
Raw Normal View History

2022-08-11 12:21:41 +02:00
{ pkgs, ... }: {
home-manager.users.adrielus = {
xdg.configFile."discord/settings.json".text = ''
{
"BACKGROUND_COLOR": "#ffffff",
"SKIP_HOST_UPDATE": true
}
'';
home.packages = with pkgs; [
unstable.discord
];
};
}