nixos/profiles/meeting/default.nix
2025-11-25 21:17:52 +01:00

23 lines
344 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
fractal
mumble
teamspeak6-client
];
};
}