1
Fork 0
satellite/home/adrielus/features/desktop/common/discord.nix

12 lines
282 B
Nix
Raw Normal View History

2023-04-30 04:30:15 +02:00
{ config, ... }: {
programs.discord = {
enable = true;
disableUpdateCheck = true;
2023-03-12 05:24:25 +01:00
enableDevtools = true;
};
2023-04-27 01:08:20 +02:00
2023-04-30 04:30:15 +02:00
satellite.persistence.at.state.apps.Discord.directories = [
"${config.xdg.configHome}/discord" # Why tf does discord store it's state here 💀
2023-04-27 01:08:20 +02:00
];
}