From 84bc7475936fc4d10da32d54ed43020353a31da9 Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 22 May 2024 21:15:22 +0100 Subject: [PATCH] auto: bootstrapping bootstrap-nixos --- hosts/bootstrap/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/bootstrap/default.nix b/hosts/bootstrap/default.nix index 0558758..409270d 100644 --- a/hosts/bootstrap/default.nix +++ b/hosts/bootstrap/default.nix @@ -54,10 +54,11 @@ in users = { mutableUsers = true; - openssh.authorizedKeys.keys = lib.lists.forEach pubKeys (key: builtins.readFile key); extraUsers = { root = { initialPassword = "1234"; + + openssh.authorizedKeys.keys = lib.lists.forEach pubKeys (key: builtins.readFile key); }; }; };