nixfiles/home/profiles/graphical/discord.nix

19 lines
371 B
Nix

{pkgs, ...}: {
stylix.targets.vesktop.enable = false;
home.packages = [
(pkgs.discord.override {
withVencord = true;
})
];
programs.vesktop = {
enable = false;
settings = {
autoUpdate = false;
autoUpdateNotification = false;
notifyAboutUpdates = false;
disableMinSize = true;
plugins = {
};
};
};
}