packages: rename from environment, install smartmontools

This commit is contained in:
Katherina Walshe-Grey 2025-01-04 19:26:27 +00:00
parent fc245b4619
commit 6a47840cd7
2 changed files with 5 additions and 2 deletions

23
common/packages.nix Normal file
View file

@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
btop
git
wget
# hardware troubleshooting
lshw
parted
smartmontools
# network troubleshooting
inetutils
lsof
tcpdump
netcat # <3
wireguard-tools
];
environment.wordlist.enable = true;
}