pidgin
This commit is contained in:
parent
33ae529c6a
commit
9750b11eba
3 changed files with 12 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
|||
signal.enable = true;
|
||||
element.enable = true;
|
||||
gajim.enable = true;
|
||||
pidgin.enable = true;
|
||||
};
|
||||
game = {
|
||||
lutris.enable = true;
|
||||
|
|
|
@ -9,5 +9,6 @@
|
|||
./cinny
|
||||
./element
|
||||
./gajim
|
||||
./pidgin
|
||||
];
|
||||
}
|
||||
|
|
10
modules/desktop/chat/pidgin/default.nix
Normal file
10
modules/desktop/chat/pidgin/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ outputs, options, config, lib, pkgs, ... }:
|
||||
let cfg = config.modules.desktop.chat.pidgin;
|
||||
in {
|
||||
options.modules.desktop.chat.pidgin = { enable = lib.mkEnableOption false; };
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
users.users.sako.packages = with pkgs;
|
||||
[ (pidgin-with-plugins.override { plugins = [ pidgin-otr ]; }) ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue