This commit is contained in:
Sandro - 2023-06-01 21:35:27 +02:00
parent ef35aca8f2
commit f46e961d1b
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 10 additions and 6 deletions

View File

@ -8,14 +8,18 @@
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
wget vim git screen
git
ipmitool
screen
vim
wget
];
services.openssh.enable = true;
services.openssh.permitRootLogin = "prohibit-password";
services.openssh = {
enable = true;
permitRootLogin = "prohibit-password";
};
# additional config for bare metal
services.collectd = {
plugins.ipmi = "";
};
services.collectd.plugins.ipmi = "";
}