nixos/installation-device: make openssh settings a default (#339786)

This commit is contained in:
misuzu
2024-12-01 16:32:13 +02:00
committed by GitHub
@@ -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.