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

22 lines
319 B
Nix
Raw Normal View History

2024-01-29 19:20:55 +04:00
{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.chat.telegram;
in {
options.modules.desktop.chat.telegram = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
telegram-desktop
];
};
}