We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a1d87 commit 7f30633Copy full SHA for 7f30633
examples/microvms-host.nix
@@ -41,8 +41,8 @@ nixpkgs.lib.nixosSystem {
41
Once nested MicroVMs have booted you can look up DHCP leases:
42
networkctl status virbr0
43
44
- They are configured to allow SSH login with an empty root
45
- password.
+ They are configured to allow SSH login with root password:
+ toor
46
'';
47
services.getty.autologinUser = "root";
48
@@ -80,7 +80,7 @@ nixpkgs.lib.nixosSystem {
80
# Just use 99-ethernet-default-dhcp.network
81
systemd.network.enable = true;
82
83
- users.users.root.password = "";
+ users.users.root.password = "toor";
84
services.openssh = {
85
enable = true;
86
settings.PermitRootLogin = "yes";
0 commit comments