nixos/profiles/meeting/default.nix

20 lines
449 B
Nix
Raw Normal View History

2023-03-19 13:57:12 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.meeting;
in
{
options.my.profiles.meeting = with lib; {
enable = mkEnableOption "meeting profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
2023-08-17 22:16:40 +02:00
# TODO revert fix: https://github.com/NixOS/nixpkgs/issues/238416
(element-desktop.override { electron = pkgs.electron_24; })
2023-03-19 13:57:12 +01:00
mumble
nheko
teamspeak_client
];
};
}