mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
19 lines
371 B
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 = {
|
|
};
|
|
};
|
|
};
|
|
}
|