nixos-config/modules/communication.nix

9 lines
236 B
Nix
Raw Normal View History

2020-12-05 13:48:06 +01:00
{ config, lib, pkgs, ... }:
2020-08-22 17:44:39 +02:00
2020-12-05 13:48:06 +01:00
lib.mkIf config.sbruder.gui {
2020-08-22 17:44:39 +02:00
environment.systemPackages = with pkgs; [
(mumble.override { pulseSupport = true; }) # VoIP group chat
claws-mail # email client that looks ugly but just works
];
}