desktop/chat: add psi-plus
This commit is contained in:
parent
c431bafcb0
commit
7239672bc9
2 changed files with 13 additions and 0 deletions
|
@ -10,5 +10,6 @@
|
||||||
./element
|
./element
|
||||||
./gajim
|
./gajim
|
||||||
./pidgin
|
./pidgin
|
||||||
|
./psiplus
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
12
modules/desktop/chat/psiplus/default.nix
Normal file
12
modules/desktop/chat/psiplus/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ... }:
|
||||||
|
let cfg = config.modules.desktop.chat.psi-plus;
|
||||||
|
in {
|
||||||
|
options.modules.desktop.chat.psi-plus = {
|
||||||
|
enable = lib.mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [ psi-plus ];
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue