desktop/chat: gajim init

This commit is contained in:
Sakooooo 2024-10-08 20:16:03 +04:00
parent 788b17bb5c
commit d7b68928a7
Signed by: sako
GPG key ID: FE52FD65B76E4751
2 changed files with 11 additions and 0 deletions

View file

@ -8,5 +8,6 @@
./signal ./signal
./cinny ./cinny
./element ./element
./gajim
]; ];
} }

View file

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