dotfiles/etc/apps/communication.nix

16 lines
232 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-05-18 01:10:04 +02:00
cinny-desktop
2024-04-28 11:35:35 +02:00
];
}