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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user