diff options
| author | Linnea Gräf <nea@nea.moe> | 2024-12-13 00:34:53 +0100 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2024-12-13 00:34:53 +0100 |
| commit | fd34381a09d0691ad90a374e1ce639d591d253f6 (patch) | |
| tree | 843975ead7c2baec5268ce9d54c1c6d621d1cfac | |
| parent | 93e9819b52f88cae44c40e0bedeb5eb6d705fabd (diff) | |
| download | nix-infra-fd34381a09d0691ad90a374e1ce639d591d253f6.tar.gz nix-infra-fd34381a09d0691ad90a374e1ce639d591d253f6.tar.bz2 nix-infra-fd34381a09d0691ad90a374e1ce639d591d253f6.zip | |
Update
| -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"; } |
