we
This commit is contained in:
parent
17300756ce
commit
f5c7956a7a
3 changed files with 20 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
|||
firefox.enable = true;
|
||||
qutebrowser.enable = false;
|
||||
};
|
||||
chat = {
|
||||
teams.enable = true;
|
||||
};
|
||||
apps = {
|
||||
nemo.enable = true;
|
||||
pass.enable = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./teams
|
||||
];
|
||||
}
|
||||
|
|
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-for-linux
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue