mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-17 23:14:07 +01:00
* feat: comment out nixpkgs-unstable, we use unstable by default Signed-off-by: Ryan Yin <xiaoyin_c@qq.com> * fix: typo... --------- Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>
28 lines
584 B
Nix
28 lines
584 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# GUI apps
|
|
# e-book viewer(.epub/.mobi/...)
|
|
# do not support .pdf
|
|
foliate
|
|
|
|
# remote desktop(rdp connect)
|
|
remmina
|
|
freerdp # required by remmina
|
|
|
|
# my custom hardened packages
|
|
nixpaks.qq
|
|
nixpaks.telegram-desktop
|
|
# qqmusic
|
|
bwraps.wechat
|
|
# discord # update too frequently, use the web version instead
|
|
];
|
|
|
|
# allow fontconfig to discover fonts and configurations installed through home.packages
|
|
# Install fonts at system-level, not user-level
|
|
fonts.fontconfig.enable = false;
|
|
}
|