dotfiles/common/users/homeModules/social.nix

16 lines
303 B
Nix
Raw Normal View History

2024-11-26 17:01:58 -05:00
{pkgs, ...}: {
imports = [
./arrpc.nix
];
home = {
packages = with pkgs;[
legcord
cinny-desktop
element-desktop
(pkgs.discord.override {
withVencord = true;
})
vesktop
];
};
}