31 lines
325 B
Nix
31 lines
325 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
nano
|
|
curl
|
|
wget
|
|
jq
|
|
ripgrep
|
|
fd
|
|
htop
|
|
dig
|
|
pv
|
|
zstd
|
|
whois
|
|
dnsutils
|
|
nixpkgs-fmt
|
|
neofetch
|
|
inxi
|
|
file
|
|
rsync
|
|
tmux
|
|
socat
|
|
gdb
|
|
lldb
|
|
go
|
|
gopls
|
|
go-outline
|
|
goimports
|
|
];
|
|
}
|