nixos/installation-device: make openssh settings a default

- as the comment above already indicates
- neither OpenSSH nor PermitRootLogin are really required for a working
  installation device, hence making it easier to change
This commit is contained in:
Felix Stupp
2024-09-05 11:51:27 +00:00
parent 63aafed9dd
commit c945e4db53
@@ -74,8 +74,8 @@ with lib;
# installation device for head-less systems i.e. arm boards by manually
# mounting the storage in a different system.
services.openssh = {
enable = true;
settings.PermitRootLogin = "yes";
enable = mkDefault true;
settings.PermitRootLogin = mkDefault "yes";
};
# Enable wpa_supplicant, but don't start it by default.