17 lines
299 B
Nix
17 lines
299 B
Nix
|
{ outputs, options, config, lib, pkgs, ...}:
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.modules.desktop.chat.teams;
|
||
|
in
|
||
|
{
|
||
|
options.modules.desktop.chat.teams = {
|
||
|
enable = mkEnableOption false;
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
users.users.sako.packages = with pkgs; [
|
||
|
teams-for-linux
|
||
|
];
|
||
|
};
|
||
|
}
|