9 lines
146 B
Nix
9 lines
146 B
Nix
|
{ pkgs, config, ... }:
|
||
|
{
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
mumble # voip
|
||
|
element-desktop # fully featured matrix client
|
||
|
];
|
||
|
}
|