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

12 lines
246 B
Nix
Raw Normal View History

{
programs.discord = {
enable = true;
disableUpdateCheck = true;
2023-03-12 05:24:25 +01:00
enableDevtools = true;
};
2023-04-27 01:08:20 +02:00
home.persistence."/persist/home/adrielus".directories = [
".config/discord" # Why tf does discord store it's state here 💀
];
}