nixos-config/sets/packages.nix

153 lines
2.2 KiB
Nix

{ config, pkgs, pkgs-unstable, lib, ... }:
let
llvm = pkgs.llvmPackages_12;
in
{
environment.systemPackages = (with pkgs; [
# Audiovisual
darktable
exiftool
flac
lame
opusTools
pavucontrol
simple-scan
youtube-dl
# 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
age
appimage-run
bat
bind
borgbackup
file
fzf
git-lfs
gitAndTools.gitFull
gitAndTools.pass-git-helper
gnupg
htop
hunspell
iw
jq
libarchive
lsof
mercurialFull
neovim
nix-index
openssl
p7zip
pandoc
parallel
pciutils
pdftk
pijul
poppler_utils
ripgrep
rlwrap
signify
subversion
tmux
tomb
traceroute
tree
unrar
unzip
usbutils
xclip
xxd
zip
# Networking
curlFull
httpie
magic-wormhole
mosh
sshuttle
transmission-remote-gtk
wget
# Development
binutils-unwrapped
ccache
cmake
conda
gcc11
gdb
gnumake
llvm.bintools
llvm.clang
llvm.lld
nasm
patchelf
rustup
valgrind
yarn
# 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
]));
}