mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-10-30 09:22:11 +01:00
19 lines
333 B
Nix
19 lines
333 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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|