This commit is contained in:
Sakooooo 2023-09-04 14:13:12 +04:00
parent 17300756ce
commit f5c7956a7a
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 20 additions and 0 deletions

View file

@ -27,6 +27,9 @@
firefox.enable = true; firefox.enable = true;
qutebrowser.enable = false; qutebrowser.enable = false;
}; };
chat = {
teams.enable = true;
};
apps = { apps = {
nemo.enable = true; nemo.enable = true;
pass.enable = true; pass.enable = true;

View file

@ -1,4 +1,5 @@
{ {
imports = [ imports = [
./teams
]; ];
} }

View 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-for-linux
];
};
}