mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
23 lines
361 B
Nix
23 lines
361 B
Nix
{ ... }:
|
|
{
|
|
programs.vesktop = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
arRPC = true;
|
|
hardwareAcceleration = true;
|
|
};
|
|
|
|
vencord.settings = {
|
|
autoUpdate = true;
|
|
autoUpdateNotification = true;
|
|
notifyAboutUpdate = true;
|
|
|
|
plugins = {
|
|
CallTimer.enable = true;
|
|
FakeNitro.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|