dotfiles/nixos/apps/communication.nix
2024-04-28 11:35:35 +02:00

15 lines
214 B
Nix
Executable file

{ pkgs, config, ... }:
{
programs.steam.enable = true;
environment.systemPackages = with pkgs; [
mumble # voip
element-desktop # fully featured matrix client
#gomuks # tui matrix client
];
}