nixos/modules/desktop/chat/teams/default.nix
2023-09-04 14:13:12 +04:00

16 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
];
};
}