add teams module
This commit is contained in:
parent
6115d9f28e
commit
cae04fec0b
16
modules/desktop/chat/teams/default.nix
Normal file
16
modules/desktop/chat/teams/default.nix
Normal file
|
@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue