Skip to content

Commit

Permalink
Enable SSH with root and weak password
Browse files Browse the repository at this point in the history
Provides a way in for initial configuration if not producing an sd-image
with the final settings configured ahead of time.
  • Loading branch information
nakato committed May 17, 2023
1 parent 9924b79 commit 398f9d6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@
};
};
networking.interfaces.br0.useDHCP = true;

services.openssh.enable = true;
# For initial setup
users.users.root.password = "bananapi";
services.openssh.settings.PermitRootLogin = "yes";
})
];
};
Expand Down

0 comments on commit 398f9d6

Please sign in to comment.