mumble
This commit is contained in:
parent
acbf00a019
commit
c860bb4ba0
|
@ -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;
|
||||||
|
|
|
@ -12,5 +12,6 @@
|
||||||
./pidgin
|
./pidgin
|
||||||
./psiplus
|
./psiplus
|
||||||
./thunderbird.nix
|
./thunderbird.nix
|
||||||
|
./mumble.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
10
modules/desktop/chat/mumble.nix
Normal file
10
modules/desktop/chat/mumble.nix
Normal 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 ];
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue