NixOS deployment for LinuxLab
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.

14 lines
215 B

1 week ago
  1. {
  2. services.haveged.enable = true;
  3. services.openssh = {
  4. enable = true;
  5. settings.PermitRootLogin = "without-password";
  6. };
  7. networking.firewall = {
  8. allowedTCPPorts = [
  9. 22 # SSH
  10. ];
  11. };
  12. }