mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 15:34:13 +01:00
27 lines
512 B
Nix
27 lines
512 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# GUI apps
|
|
# e-book viewer(.epub/.mobi/...)
|
|
# do not support .pdf
|
|
foliate
|
|
|
|
# instant messaging
|
|
telegram-desktop
|
|
discord
|
|
qq # https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/networking/instant-messengers/qq
|
|
|
|
# remote desktop(rdp connect)
|
|
remmina
|
|
freerdp # required by remmina
|
|
|
|
# misc
|
|
flameshot
|
|
ventoy # multi-boot usb creator
|
|
];
|
|
|
|
# GitHub CLI tool
|
|
programs.gh = {
|
|
enable = true;
|
|
};
|
|
}
|