nixos/modules/desktop/chat/weechat/default.nix

22 lines
306 B
Nix
Raw Normal View History

2024-03-05 18:51:37 +04:00
{
outputs,
options,
config,
lib,
pkgs,
...
}:
2024-08-01 16:24:09 +04:00
let
2024-03-05 18:53:53 +04:00
cfg = config.modules.desktop.chat.weechat;
2024-03-05 18:51:37 +04:00
in {
options.modules.desktop.chat.weechat = {
2024-08-01 16:24:09 +04:00
enable = lib.mkEnableOption false;
2024-03-05 18:51:37 +04:00
};
2024-08-01 16:24:09 +04:00
config = lib.mkIf cfg.enable {
2024-03-05 18:51:37 +04:00
users.users.sako.packages = with pkgs; [
weechat
];
};
}