1
Fork 0
satellite/modules/applications/discord.nix
2022-08-11 13:21:41 +03:00

14 lines
271 B
Nix

{ pkgs, ... }: {
home-manager.users.adrielus = {
xdg.configFile."discord/settings.json".text = ''
{
"BACKGROUND_COLOR": "#ffffff",
"SKIP_HOST_UPDATE": true
}
'';
home.packages = with pkgs; [
unstable.discord
];
};
}