13 lines
216 B
Nix
Executable file
13 lines
216 B
Nix
Executable file
{ pkgs, config, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mumble # voip
|
|
element-desktop # fully featured matrix client
|
|
#gomuks # tui matrix client
|
|
simplex-chat-desktop
|
|
discord
|
|
|
|
];
|
|
|
|
}
|