dotfiles/nix/apps/communication.nix
2024-07-31 07:17:52 +02:00

16 lines
215 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
];
}