nixos/modules/desktop/chat/weechat/default.nix
2024-08-01 16:24:09 +04:00

21 lines
306 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.desktop.chat.weechat;
in {
options.modules.desktop.chat.weechat = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
weechat
];
};
}