dotfiles/nix/personal/graphical/messengers.nix
2026-02-11 21:44:06 +09:00

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
];
}