nix-conf/user/packages.nix

69 lines
1.1 KiB
Nix
Raw Normal View History

2024-08-23 14:52:05 -04:00
{
2024-10-27 13:34:49 -04:00
config,
2024-12-22 23:46:42 -05:00
lib,
2024-10-27 13:34:49 -04:00
pkgs,
...
}: {
2024-12-22 23:46:42 -05:00
home.packages = with pkgs;
[
lsd
bat
zoxide
fd
ripgrep
fzf
trash-cli
tlrc
speedtest-cli
unixtools.xxd
starship
2025-02-17 01:15:44 -05:00
sshfs
2024-12-22 23:46:42 -05:00
killall
file
nix-tree
alejandra
ffmpeg
ffsubsync
unzip
unar
2025-02-25 17:36:22 -05:00
keepassxc
2024-12-22 23:46:42 -05:00
]
++ lib.optionals config.u.has.graphical [
2025-02-11 20:43:13 -05:00
(config.u.lib.localHome pkgs.firefox "firefox" "bin/firefox")
2025-03-01 13:15:24 -05:00
(config.u.lib.localHome pkgs.librewolf "librewolf" "bin/librewolf")
2024-12-22 23:46:42 -05:00
alacritty
2025-01-01 01:04:23 -05:00
nsxiv
2024-12-22 23:46:42 -05:00
rofi
sct
2025-01-01 01:04:23 -05:00
maim
2024-12-22 23:46:42 -05:00
xclip
copyq
picom
obs-studio
screenkey
2025-01-19 11:24:18 -05:00
safeeyes
2024-12-22 23:46:42 -05:00
snixembed
libsForQt5.kolourpaint
libsForQt5.filelight
papirus-icon-theme
lightly-boehs
pavucontrol
qpwgraph
qbittorrent
xournalpp
adwaita-icon-theme
bluetuith
globalprotect-openconnect
2025-01-27 18:24:48 -05:00
virt-viewer
2024-12-22 23:46:42 -05:00
]
++ lib.optionals config.u.has.wine [
2025-01-20 12:40:46 -05:00
wineWowPackages.stable
2024-12-22 23:46:42 -05:00
winetricks
2025-01-01 19:18:52 -05:00
]
++ lib.optionals config.u.has.jp [
anki
ki
python312Packages.manga-ocr
2024-12-22 23:46:42 -05:00
];
2024-08-23 14:52:05 -04:00
}