From cae04fec0bb10501bbeb502df175ac9a0fe24351 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 30 Aug 2023 10:12:15 +0400 Subject: [PATCH] add teams module --- modules/desktop/chat/teams/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/desktop/chat/teams/default.nix 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 + ]; + }; +}