23 lines
244 B
Nix
23 lines
244 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
git
|
|
curl
|
|
fastfetch
|
|
net-tools
|
|
ethtool
|
|
dhcpcd
|
|
dig
|
|
usbutils
|
|
dhcpcd
|
|
host
|
|
dnslookup
|
|
drill
|
|
dig
|
|
tree
|
|
lsof
|
|
];
|
|
}
|