1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00

nixos/lib: add iotop, enable root console login

This commit is contained in:
Matt Layher 2022-02-06 10:53:31 -05:00
parent e9d78faf78
commit 3d0b91dfd9

View file

@ -48,6 +48,7 @@ in {
gnumake
htop
iftop
iotop
iperf3
jq
lm_sensors
@ -132,5 +133,8 @@ in {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN5i5d0mRKAf02m+ju+I1KrAYw3Ny2IHXy88mgyragBN Matt Layher (mdlayher@gmail.com)"
];
};
# Set up root login for emergency console access.
users.root.hashedPassword = secrets.users.root_password_hash;
};
}