mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
17 lines
302 B
Nix
17 lines
302 B
Nix
{ pkgs
|
|
, lib
|
|
, rootPath
|
|
, config
|
|
, system
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
signalSuffix = if system == "x86_64-linux" then "amd64" else "arm64";
|
|
in lib.mkIf cfg.messengers.personal {
|
|
users.users.${cfg.username}.packages = with pkgs; [
|
|
discord-ptb
|
|
telegram-desktop
|
|
pkgs.signal-desktop
|
|
];
|
|
}
|