diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | srv/h-alpha/configuration.nix | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9448a83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +result + + diff --git a/srv/h-alpha/configuration.nix b/srv/h-alpha/configuration.nix index 04c3aa4..9f8167a 100644 --- a/srv/h-alpha/configuration.nix +++ b/srv/h-alpha/configuration.nix @@ -17,6 +17,7 @@ openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINg2WYMRKINwbH5UCqqK2qq/qW0gG1NnaALHqEyU4NzM nea@smiley-mk1" ]; + initialHashedPassword = "$y$j9T$a4xR89vrsf1Kp1Rm.hxBM.$0KMdqEwi1uU6AbXKr.cdbQXahjs2TNairGr/3PMO6s7"; }; security.sudo.wheelNeedsPassword = false; @@ -25,10 +26,12 @@ enable = true; settings = { PermitRootLogin = "no"; - PasswordAuthentication = false; + # PasswordAuthentication = false; KbdInteractiveAuthentication = false; }; }; + networking.hostName = "alpha-site"; + system.stateVersion = "24.11"; } |
