aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-12-12 23:56:58 +0100
committerLinnea Gräf <nea@nea.moe>2024-12-12 23:57:07 +0100
commit93e9819b52f88cae44c40e0bedeb5eb6d705fabd (patch)
treed40e7f0fefa315763efac9fb504f83b1b667c9d9
parent7b62b079859c9f84a14cc4fb73e7cd8e6bf4ce21 (diff)
downloadnix-infra-93e9819b52f88cae44c40e0bedeb5eb6d705fabd.tar.gz
nix-infra-93e9819b52f88cae44c40e0bedeb5eb6d705fabd.tar.bz2
nix-infra-93e9819b52f88cae44c40e0bedeb5eb6d705fabd.zip
Add user to ssh keys
-rw-r--r--srv/h-alpha/configuration.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/srv/h-alpha/configuration.nix b/srv/h-alpha/configuration.nix
index 4f9eb44..04c3aa4 100644
--- a/srv/h-alpha/configuration.nix
+++ b/srv/h-alpha/configuration.nix
@@ -10,13 +10,12 @@
./disko-config.nix
];
boot.loader.systemd-boot.enable = true;
- # boot.loader.grub.device = "/dev/sda";
users.users.nea = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINg2WYMRKINwbH5UCqqK2qq/qW0gG1NnaALHqEyU4NzM"
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINg2WYMRKINwbH5UCqqK2qq/qW0gG1NnaALHqEyU4NzM nea@smiley-mk1"
];
};