Revert "add teams module"

This reverts commit cae04fec0b.
This commit is contained in:
Sakooooo 2023-08-30 10:21:07 +04:00
parent 343e894613
commit 79973e6458
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -1,16 +0,0 @@
{ 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
];
};
}