mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
15 lines
205 B
Nix
15 lines
205 B
Nix
{ pkgs
|
|
, lib
|
|
, rootPath
|
|
, config
|
|
, system
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
in lib.mkIf cfg.messengers.personal {
|
|
users.users.${cfg.username}.packages = with pkgs; [
|
|
discord
|
|
telegram-desktop
|
|
];
|
|
}
|