nixfiles/home/dev/all/info.nix

22 lines
300 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
neofetch
(inxi.override {
withRecommendedSystemPrograms = true;
})
lm_sensors
hddtemp
freeipmi
ipmitool
smartmontools
tree
btop
htop
pciutils
usbutils
i2c-tools
iotop
iptraf-ng
];
2022-07-27 16:47:49 +01:00
}