9 lines
195 B
Nix
9 lines
195 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
(mumble.override { pulseSupport = true; }) # VoIP group chat
|
||
|
claws-mail # email client that looks ugly but just works
|
||
|
];
|
||
|
}
|