69 lines
1.1 KiB
Nix
69 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs;
|
|
[
|
|
lsd
|
|
bat
|
|
zoxide
|
|
fd
|
|
ripgrep
|
|
fzf
|
|
trash-cli
|
|
tlrc
|
|
speedtest-cli
|
|
unixtools.xxd
|
|
starship
|
|
sshfs
|
|
killall
|
|
file
|
|
nix-tree
|
|
alejandra
|
|
ffmpeg
|
|
ffsubsync
|
|
unzip
|
|
unar
|
|
keepassxc
|
|
hyx
|
|
]
|
|
++ lib.optionals config.u.has.graphical [
|
|
(config.u.lib.localHome pkgs.firefox "firefox" "bin/firefox")
|
|
(config.u.lib.localHome pkgs.librewolf "librewolf" "bin/librewolf")
|
|
alacritty
|
|
nsxiv
|
|
rofi
|
|
sct
|
|
maim
|
|
xclip
|
|
copyq
|
|
picom
|
|
obs-studio
|
|
screenkey
|
|
safeeyes
|
|
snixembed
|
|
kdePackages.kolourpaint
|
|
kdePackages.filelight
|
|
papirus-icon-theme
|
|
pavucontrol
|
|
qpwgraph
|
|
qbittorrent
|
|
xournalpp
|
|
adwaita-icon-theme
|
|
bluetuith
|
|
virt-viewer
|
|
libreoffice-fresh
|
|
]
|
|
++ lib.optionals config.u.has.wine [
|
|
wineWowPackages.stable
|
|
winetricks
|
|
]
|
|
++ lib.optionals config.u.has.jp [
|
|
anki
|
|
ki
|
|
python312Packages.manga-ocr
|
|
];
|
|
}
|