nixos/lil-maid/modules/social.nix
2024-09-22 11:34:06 +03:00

16 lines
226 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Slack
slack
# Telegram
telegram-desktop
# Discord
(discord.override {
withOpenASAR = true;
withVencord = true;
})
];
}