Files
nix-config/home/linux/gui/base/misc.nix
2025-05-30 21:52:25 +08:00

38 lines
776 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
pkgs.nixpaks.qq-desktop-item
wechat-uos
# pkgs.nixpaks.wechat-uos
# pkgs.nixpaks.wechat-uos-desktop-item
];
# GitHub CLI tool
programs.gh = {
enable = true;
};
# allow fontconfig to discover fonts and configurations installed through home.packages
# Install fonts at system-level, not user-level
fonts.fontconfig.enable = false;
}