packages: rename from environment, install smartmontools
This commit is contained in:
parent
fc245b4619
commit
6a47840cd7
2 changed files with 5 additions and 2 deletions
23
common/packages.nix
Normal file
23
common/packages.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue