nixos-config/packages.nix

260 lines
3.7 KiB
Nix
Raw Normal View History

2020-04-11 21:47:33 +00:00
{ config, pkgs, ... }:
let
llvm = pkgs.llvmPackages_10;
go = pkgs.go_1_14;
unwrappedFirefox = pkgs.firefox-bin-unwrapped.override { systemLocale = "de-DE"; };
fullFirefox = (pkgs.wrapFirefox unwrappedFirefox {
browserName = "firefox";
desktopName = "Firefox";
gdkWayland = true;
pname = "firefox-bin";
});
in
{
environment.systemPackages = (with pkgs; [
# Audiovisual
audacity
darktable
ffmpeg-full
flac
gimp
lame
mpv
opusTools
pamixer
pavucontrol
sox
vlc_qt5
youtubeDL
# Drawing and art
krita
xournal
xournalpp
# Books
calibre
# Emulation
mgba
mupen64plus
# Wine and tools
cabextract
samba
wineWowPackages.staging
winetricks
# Virtualization
docker-compose
gnome3.gnome-boxes
qemu
# Linux tools
cachix
dmidecode
gparted
hdparm
iptables
krb5
lm_sensors
manpages
nethogs
parted
pinentry-gtk2 # needed for tomb
powertop
psmisc
sbsigntool
xorg.xeyes
xorg.xkill
2020-04-12 19:09:16 +00:00
# Filesystems
cifs_utils
exfat
nfsUtils
ntfs3g
udftools
2020-04-11 21:47:33 +00:00
# Wayland tools
dex
glib
grim
imagemagick
2020-05-04 15:53:17 +00:00
libnotify
2020-04-11 21:47:33 +00:00
mako
polkit_gnome
slurp
wf-recorder
wl-clipboard
wofi
xdg-user-dirs
xdg_utils
xsettingsd
# Useful CLI tools
appimage-run
bat
bind
borgbackup
file
2020-04-11 21:57:36 +00:00
fzf
2020-04-11 21:47:33 +00:00
git-lfs
gitAndTools.gitFull
2020-04-27 23:19:31 +00:00
gitAndTools.pass-git-helper
2020-04-11 21:47:33 +00:00
htop
hunspell
iw
jq
libarchive
lsof
mercurialFull
neovim
nix-index
openssl
p7zip
pandoc
2020-04-27 23:19:31 +00:00
parallel
2020-04-11 21:47:33 +00:00
pciutils
pdftk
2020-04-27 23:19:31 +00:00
pijul
2020-04-11 21:47:33 +00:00
poppler_utils
ripgrep
rlwrap
subversion
tmux
tomb
traceroute
tree
2020-04-27 23:19:31 +00:00
unrar
2020-04-11 21:47:33 +00:00
unzip
usbutils
xclip
xxd
zip
# Networking
curlFull
httpie
iodine
megatools
mosh
sshfs
sshuttle
transmission-gtk
transmission-remote-gtk
wget
# Development
arduino
binutils-unwrapped
ccache
clang-tools
cmake
conda
gcc9
gdb
gnumake
go
jetbrains.clion
llvm.clang
llvm.lld
nasm
patchelf
2020-04-11 21:57:36 +00:00
python37Packages.python-language-server
2020-04-11 21:47:33 +00:00
rr
rustup
valgrind
vscode
# Hardware
arachne-pnr
eagle
icestorm
kicad
nextpnr
tinyprog
verilator
verilog
yosys
# Radio
limesuite
2020-04-27 23:19:31 +00:00
gnuradio-with-packages
2020-04-11 21:47:33 +00:00
soapysdr
gqrx
# Hacking tools
aircrack-ng
fusee-launcher
ghidra-bin
insomnia
ncat
pcsctools
pwndbg
python37Packages.binwalk-full
python37Packages.shodan
# Security
(pass.withExtensions (exts: [ exts.pass-otp ]))
_1password
keybase-gui
wireguard
yubikey-manager
yubioath-desktop
# Syncing
dropbox
syncthing-cli
syncthing-gtk
# GUI tools
evince
gnome3.eog
gnome3.gnome-system-monitor
googleearth
kitty
libreoffice-fresh
zathura
# Web
fullFirefox
google-chrome
tor-browser-bundle-bin
# Communication
discord
signal-desktop
slack
tdesktop
2020-05-04 15:53:17 +00:00
weechat
2020-04-11 21:47:33 +00:00
# Gnome configuration
gnome3.adwaita-icon-theme
gnome3.gnome-tweak-tool
2020-04-27 23:19:31 +00:00
gnome3.gsettings-desktop-schemas
2020-04-11 21:47:33 +00:00
gnomeExtensions.appindicator
2020-04-27 23:19:31 +00:00
gnome_themes_standard
2020-04-11 21:47:33 +00:00
hicolor-icon-theme
numix-icon-theme
numix-icon-theme-circle
# Games
multimc
steam
steam-run
# Game dependencies
gnome3.zenity # Steam requires zenity
SDL2 SDL2_ttf SDL2_image
# Debug info
wayland.debug
# Dictionaries
]) ++ (with pkgs.hunspellDicts; [
en-us-large
de_DE
]);
}