desktop/chat: gajim init
This commit is contained in:
parent
788b17bb5c
commit
d7b68928a7
2 changed files with 11 additions and 0 deletions
|
@ -8,5 +8,6 @@
|
||||||
./signal
|
./signal
|
||||||
./cinny
|
./cinny
|
||||||
./element
|
./element
|
||||||
|
./gajim
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
10
modules/desktop/chat/gajim/default.nix
Normal file
10
modules/desktop/chat/gajim/default.nix
Normal 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 ];
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue