14 lines
153 B
Nix
14 lines
153 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
git
|
|
curl
|
|
fastfetch
|
|
net-tools
|
|
ethtool
|
|
dhcpcd
|
|
];
|
|
}
|