nixos/profiles/meeting/default.nix

23 lines
330 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-03-19 13:57:12 +01:00
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
2023-03-19 13:57:12 +01:00
mumble
2024-09-30 00:38:01 +02:00
teamspeak5_client
2023-03-19 13:57:12 +01:00
];
};
}