nixos/profiles/meeting/default.nix
2024-07-28 21:08:02 +02:00

23 lines
341 B
Nix

{
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; [
element-desktop
mumble
nheko
teamspeak_client
];
};
}