dotfiles/nix/apps/communication.nix

16 lines
215 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-04-28 11:35:35 +02:00
}