Files
nix-config/home/linux/gui/base/misc.nix
2025-09-19 00:04:31 +08:00

31 lines
628 B
Nix

{
pkgs,
pkgs-unstable,
...
}:
{
home.packages = with pkgs; [
# GUI apps
# e-book viewer(.epub/.mobi/...)
# do not support .pdf
foliate
# instant messaging
telegram-desktop
# discord # update too frequently, use the web version instead
# remote desktop(rdp connect)
remmina
freerdp # required by remmina
# my custom hardened packages
pkgs.nixpaks.qq
# qqmusic
pkgs.bwraps.wechat
];
# allow fontconfig to discover fonts and configurations installed through home.packages
# Install fonts at system-level, not user-level
fonts.fontconfig.enable = false;
}