2024-11-03 12:47:02 +01:00
|
|
|
{ pkgs, ... }: {
|
2024-05-01 04:14:00 +02:00
|
|
|
imports = [ ./small.nix ];
|
|
|
|
|
|
|
|
# List packages installed in system profile
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-12-11 05:19:17 +01:00
|
|
|
dig # DNS utilities
|
2024-05-01 04:14:00 +02:00
|
|
|
nfs-utils # nfs network share tools
|
|
|
|
sbctl # Secureboot Control
|
|
|
|
wget # WebGet
|
|
|
|
killall # Killall
|
|
|
|
curl # Curl - For web requests
|
|
|
|
ncdu # ncurses style browser for du/dust
|
|
|
|
du-dust # better UI for 'du"
|
|
|
|
home-manager # manage dotfiles
|
|
|
|
nload # network load - Network usage graphs
|
|
|
|
iotop # I/O top viewer - disk r/w, etc
|
|
|
|
fx # Pretty print JSON
|
|
|
|
nodejs # Required by fx
|
|
|
|
parted # Disk partitioner / Formatter
|
|
|
|
e2fsprogs # disk format utilities, like mkfs.ext4
|
|
|
|
openssl # Used to generate certs, random strings, etc
|
|
|
|
tree # CLI directory display software
|
|
|
|
nmap # network mapping / discovery software
|
|
|
|
busybox # General linux commands, nslookup, dig, etc
|
|
|
|
ethtool # Ethernet troubleshooting:with
|
2024-05-06 13:27:43 +02:00
|
|
|
file # Shows the types of files
|
2024-10-17 13:30:13 +02:00
|
|
|
yt-dlp # Download YouTube videos
|
2024-12-11 05:19:17 +01:00
|
|
|
television # Fuzzy finder for the Linux terminal
|
2024-05-01 04:14:00 +02:00
|
|
|
];
|
|
|
|
}
|