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;
|
signal.enable = true;
|
||||||
element.enable = true;
|
element.enable = true;
|
||||||
gajim.enable = true;
|
gajim.enable = true;
|
||||||
|
pidgin.enable = true;
|
||||||
};
|
};
|
||||||
game = {
|
game = {
|
||||||
lutris.enable = true;
|
lutris.enable = true;
|
||||||
|
|
|
@ -9,5 +9,6 @@
|
||||||
./cinny
|
./cinny
|
||||||
./element
|
./element
|
||||||
./gajim
|
./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