diff --git a/modules/desktop/chat/teams/default.nix b/modules/desktop/chat/teams/default.nix new file mode 100644 index 00000000..e8d42534 --- /dev/null +++ b/modules/desktop/chat/teams/default.nix @@ -0,0 +1,16 @@ +{ 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 + ]; + }; +}