mirror of
https://github.com/davegallant/nix-config
synced 2026-03-03 12:46:34 +00:00
169 lines
2.5 KiB
Nix
169 lines
2.5 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
unstable,
|
|
vpngate,
|
|
...
|
|
}:
|
|
let
|
|
inherit (pkgs) stdenv;
|
|
in
|
|
{
|
|
environment.systemPackages =
|
|
with pkgs;
|
|
[
|
|
# essentials
|
|
curl
|
|
gnumake
|
|
gnupg
|
|
jq
|
|
unzip
|
|
zip
|
|
|
|
# modern cli
|
|
atuin
|
|
bat
|
|
cd-fzf
|
|
doggo
|
|
eza
|
|
fd
|
|
github-cli
|
|
hadolint
|
|
lazygit
|
|
macchina
|
|
ncdu
|
|
progress
|
|
ripgrep
|
|
shellcheck
|
|
shfmt
|
|
viddy
|
|
yq-go
|
|
|
|
# containers
|
|
unstable.k9s
|
|
unstable.krew
|
|
unstable.kubecolor
|
|
unstable.kubectl
|
|
unstable.kubectx
|
|
unstable.kubernetes-helm
|
|
unstable.stern
|
|
|
|
# cloud
|
|
awscli2
|
|
google-cloud-sdk
|
|
terraform
|
|
|
|
# lsp
|
|
nodePackages.bash-language-server
|
|
nodePackages.eslint
|
|
nodePackages.yaml-language-server
|
|
terraform-ls
|
|
|
|
# monitoring
|
|
btop
|
|
|
|
# golang
|
|
gofumpt
|
|
golangci-lint
|
|
gopls
|
|
|
|
# rust
|
|
rustup
|
|
|
|
# nix
|
|
nix-tree
|
|
nixfmt-rfc-style
|
|
nixpkgs-review
|
|
nvd
|
|
|
|
# python
|
|
virtualenv
|
|
|
|
# media
|
|
yt-dlp
|
|
]
|
|
++ lib.optionals stdenv.isLinux [
|
|
xclip
|
|
xdg-utils
|
|
|
|
# networking
|
|
arp-scan
|
|
dnsutils
|
|
iperf
|
|
nmap
|
|
openssl
|
|
openvpn
|
|
tcpdump
|
|
|
|
# desktop apps
|
|
bitwarden-desktop
|
|
dbeaver-bin
|
|
discord
|
|
feishin
|
|
freefilesync
|
|
gimp-with-plugins
|
|
google-chrome
|
|
httpie-desktop
|
|
onlyoffice-desktopeditors
|
|
pika-backup
|
|
pinta
|
|
qbittorrent
|
|
unstable.obsidian
|
|
unstable.podman-desktop
|
|
unstable.signal-desktop-bin
|
|
unstable.zoom-us
|
|
|
|
# gaming
|
|
heroic
|
|
ludusavi
|
|
mupen64plus
|
|
protonup-qt
|
|
unstable.ryubing
|
|
unstable.lutris
|
|
wine
|
|
|
|
# kde
|
|
kdePackages.bluedevil
|
|
kdePackages.kcalc
|
|
kdePackages.kcharselect
|
|
kdePackages.kclock
|
|
kdePackages.kcolorchooser
|
|
kdePackages.ksystemlog
|
|
kdePackages.partitionmanager
|
|
kdePackages.sddm-kcm
|
|
|
|
# media
|
|
calibre
|
|
libation
|
|
unstable.spotify
|
|
vlc
|
|
|
|
# networking
|
|
iputils
|
|
traceroute
|
|
unstable.ktailctl
|
|
unstable.tailscale
|
|
vpngate.packages.x86_64-linux.default
|
|
whois
|
|
|
|
# security
|
|
bleachbit
|
|
clamtk
|
|
cryptsetup
|
|
opensnitch-ui
|
|
pinentry-curses
|
|
|
|
# system utilities
|
|
hardinfo2
|
|
nfs-utils
|
|
pciutils
|
|
qemu
|
|
unrar
|
|
unstable.beszel
|
|
usbutils
|
|
virt-manager
|
|
wayland-utils
|
|
wl-clipboard
|
|
];
|
|
}
|