9 lines
252 B
Nix
9 lines
252 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
vesktop
|
|
(discord.override {
|
|
withOpenASAR = true;
|
|
})
|
|
];
|
|
# services.arrpc.enable = true; # RPC with vesktop (disabled since it uses way more cpu than is reasonable for such a program)
|
|
}
|