nixos-config/sets/packages.nix

139 lines
2.1 KiB
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{ pkgs, lib, ... }:
{
environment.systemPackages =
(with pkgs; [
# Audiovisual
darktable
exiftool
flac
lame
opusTools
pavucontrol
r128gain
simple-scan
skanlite
yt-dlp
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Linux tools
dmidecode
gparted
hdparm
iptables
lm_sensors
nethogs
nvme-cli
parted
powertop
psmisc
qrencode
rsync
xorg.xeyes
xorg.xkill
zbar
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Filesystems
cifs-utils
exfatprogs
nfs-utils
ntfsprogs
udftools
2020-04-12 19:09:16 +00:00
2024-03-02 03:13:17 +00:00
# Useful CLI tools
_7zz
appimage-run
bind
borgbackup
file
fzf
git-lfs
gitAndTools.gitFull
gitAndTools.pass-git-helper
htop
hunspell
jq
libarchive
lsof
nix-output-monitor
nix-top
openssl
parallel
pciutils
pdftk
poppler_utils
python3Packages.ipython
ripgrep
rlwrap
tmux
tomb
tree
unrar
unzip
usbutils
xxd
zip
2020-11-26 04:20:52 +00:00
2024-03-02 03:13:17 +00:00
# Networking
curlFull
iw
mosh
mtr
sshuttle
traceroute
transmission-remote-gtk
wget
2024-04-06 23:37:52 +00:00
wormhole-rs
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Development
patchelf
rustup
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Security
pass
wireguard-tools
yubikey-manager
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# GUI tools
dino
evince
gimp
gnome3.eog
gnome3.gnome-system-monitor
inkscape
libreoffice-fresh
nheko
2024-02-24 03:59:49 +00:00
2024-03-02 03:13:17 +00:00
# I guess this is its own thing
libqalculate
qalculate-gtk
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Gnome configuration
gnome3.adwaita-icon-theme
gsettings-desktop-schemas
gnome-themes-extra
hicolor-icon-theme
2020-04-11 21:47:33 +00:00
2024-03-02 03:13:17 +00:00
# Dictionaries
])
++ (with pkgs.hunspellDicts; [
en-us-large
de_DE
])
++ (lib.optionals (pkgs.system == "x86_64-linux") (
with pkgs;
[
# Web
google-chrome
2023-11-01 04:18:19 +00:00
2024-03-02 03:13:17 +00:00
# EFI stuff
efibootmgr
efitools
sbsigntool
2021-08-26 17:12:58 +00:00
2024-03-02 03:13:17 +00:00
# Wine and tools
cabextract
samba
wineWowPackages.waylandFull
]
));
2020-04-11 21:47:33 +00:00
}