mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
profiles/meeting: init from legacy
This commit is contained in:
parent
62668a94e7
commit
2254e2e3fc
5 changed files with 20 additions and 10 deletions
18
profiles/meeting/default.nix
Normal file
18
profiles/meeting/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue