dotfiles/nix/apps/communication.nix

18 lines
241 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, config, ... }:
{
programs.steam.enable = true;
environment.systemPackages = with pkgs; [
mumble # voip
element-desktop # fully featured matrix client
#gomuks # tui matrix client
2024-12-05 07:02:26 +01:00
simplex-chat-desktop
2024-04-28 11:35:35 +02:00
];
2024-04-28 11:35:35 +02:00
}