Files
Nix-Vibe/modules/core/management.nix
T

19 lines
304 B
Nix

{ pkgs, ... }:
{
# Common admin/monitoring tools available on every host.
environment.systemPackages = with pkgs; [
htop
bottom
iotop
ncdu
ripgrep
fd
jq
lsof
tmux
];
# Firmware updates for all machines (laptops AND servers).
services.fwupd.enable = true;
}