nixos/lil-maid/modules/social.nix
2024-12-17 00:25:43 +03:00

16 lines
236 B
Nix

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