You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
616 B
31 lines
616 B
{ pkgs, ... }:
|
|
|
|
{
|
|
users.mutableUsers = false;
|
|
|
|
users.users."root" = {
|
|
#TODO: hashedPassword = "$y$j9T$5ZEv2RROIXAqdFjFEXEst0$5HA63fmwjGXw1id4n94TRgY1gTuXsQGKXmzlcWXyE07";
|
|
hashedPassword = "$y$j9T$IqOVsS6/ACfhDXzA3LqsZ1$J/16UDhw44bHWJqIoCdjms6IEwT4tk4ghq2WpThOlMA";
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2nkarN0+uSuP5sGwDCb9KRu+FCjO/+da4VypGanPUZ fooker@k-2so"
|
|
];
|
|
|
|
packages = with pkgs; [
|
|
vim
|
|
wget
|
|
curl
|
|
tmux
|
|
fd
|
|
ripgrep
|
|
htop
|
|
iotop
|
|
iftop
|
|
file
|
|
iperf
|
|
ldns
|
|
tcpdump
|
|
];
|
|
};
|
|
}
|
|
|