ssh-keys: add julienmalka
Julien Malka committed
Sep 10, 2023 at 23:10 UTC
1267b63534b6ee61970fb385e3cb6b20370f326b
2 files changed
+3
-9
non-critical-infra/hosts/hetzner-01/default.nix
+1
-9
@@ -44,15 +44,7 @@
44
45
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f9:5a:186c::2";
46
47
- users.users.root.openssh.authorizedKeys = {
48
- keyFiles = [
49
- (pkgs.fetchurl {
50
- url = "https://github.com/JulienMalka.keys";
51
- hash = "sha256-glt0tL13aqC00/Bu+13xZbOGqeNlYx5oElLwfYs7knY=";
52
- })
53
- ];
54
- keys = (import ../../../ssh-keys.nix).infra;
55
- };
47
+ users.users.root.openssh.authorizedKeys.keys = (import ../../../ssh-keys.nix).infra;
48
49
system.stateVersion = "23.05";
50
ssh-keys.nix
+2
@@ -24,10 +24,12 @@ rec {
24
25
hexa-gaia = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAWQRR7dspgQ6kCwyFnoVlgmmPR4iWL1+nvq6a5ad2Ug hexa@gaia";
26
hexa-helix = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSpdtIxIBFtd7TLrmIPmIu5uemAFJx4sNslRsJXfFxr hexa@helix";
27
+ julienmalka = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGa+7n7kNzb86pTqaMn554KiPrkHRGeTJ0asY1NjSbpr julien@tower";
28
29
infra-core = [ eelco graham graham-hermes-conrad zimbatm amine vcunat ];
30
infra = infra-core ++ [
31
hexa-gaia
32
hexa-helix
33
+ julienmalka
34
];
35
}