This commit is contained in:
Sakooooo 2025-01-12 16:08:01 +04:00
parent acbf00a019
commit c860bb4ba0
Signed by: sako
GPG key ID: FE52FD65B76E4751
3 changed files with 12 additions and 0 deletions

View file

@ -39,6 +39,7 @@
chat = { chat = {
zoom.enable = true; zoom.enable = true;
discord.enable = true; discord.enable = true;
mumble.enable = true;
thunderbird.enable = true; thunderbird.enable = true;
teams.enable = true; teams.enable = true;
telegram.enable = true; telegram.enable = true;

View file

@ -12,5 +12,6 @@
./pidgin ./pidgin
./psiplus ./psiplus
./thunderbird.nix ./thunderbird.nix
./mumble.nix
]; ];
} }

View file

@ -0,0 +1,10 @@
{ outputs, options, config, lib, pkgs, ... }:
let cfg = config.modules.desktop.chat.mumble;
in {
options.modules.desktop.chat.mumble = { enable = lib.mkEnableOption false; };
config = lib.mkIf cfg.enable {
users.users.sako.packages = [ pkgs.mumble ];
};
}