nixos-config/sets/packages.nix
2022-06-28 00:07:02 +00:00

130 lines
1.9 KiB
Nix

{ config, pkgs, pkgs-unstable, lib, ... }:
{
environment.systemPackages = (with pkgs; [
# Audiovisual
darktable
exiftool
flac
lame
opusTools
pavucontrol
simple-scan
yt-dlp
# Linux tools
dmidecode
gparted
hdparm
iptables
lm_sensors
man-pages
nethogs
nvme-cli
parted
pinentry-curses
pinentry-gtk2 # needed for tomb
powertop
psmisc
qrencode
rsync
xorg.xeyes
xorg.xkill
zbar
# Filesystems
cifs-utils
nfs-utils
ntfs3g
udftools
# Useful CLI tools
appimage-run
bat
bind
borgbackup
file
fzf
git-lfs
gitAndTools.gitFull
gitAndTools.pass-git-helper
gnupg
htop
hunspell
iw
jq
libarchive
lsof
neovim
nix-index
openssl
p7zip
parallel
pciutils
pdftk
poppler_utils
ripgrep
rlwrap
tmux
tomb
traceroute
tree
unrar
unzip
usbutils
xxd
zip
# Networking
curlFull
httpie
magic-wormhole
mosh
sshuttle
transmission-remote-gtk
wget
# Development
patchelf
rustup
# Security
(pass.withExtensions (exts: [ exts.pass-otp ]))
wireguard-tools
yubikey-manager
yubioath-desktop
# GUI tools
alacritty
evince
gnome3.eog
gnome3.gnome-system-monitor
zathura
libreoffice-fresh
# Web
firefox-wayland
# Gnome configuration
gnome3.adwaita-icon-theme
gsettings-desktop-schemas
gnome-themes-extra
hicolor-icon-theme
numix-icon-theme
numix-icon-theme-circle
# Dictionaries
]) ++ (with pkgs.hunspellDicts; [
en-us-large
de_DE
]) ++ (lib.optionals (pkgs.system == "x86_64-linux") (with pkgs; [
efibootmgr
efitools
sbsigntool
# Wine and tools
cabextract
samba
pkgs-unstable.wineWowPackages.waylandFull
]));
}