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

22 lines
308 B
Nix
Raw Normal View History

2024-03-05 18:51:37 +04:00
{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; 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 = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
weechat
];
};
}