From 6ee22fba9aaa004a5726d435cc0c0545d7adb501 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Fri, 30 Aug 2024 22:00:16 +0200 Subject: [PATCH] hard code ssh keys --- dafoe/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dafoe/configuration.nix b/dafoe/configuration.nix index 3c46077..b50832e 100644 --- a/dafoe/configuration.nix +++ b/dafoe/configuration.nix @@ -47,8 +47,8 @@ packages = with pkgs; [ ]; openssh.authorizedKeys.keys = [ - "${../nix-secrets/dafoe/ssh/gunther}" - "${../nix-secrets/dafoe/ssh/absol}" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUMTbIxSRWqpIVtDbjwZK41FFOV5eQf9eJECgm40Fj1 leonv@gunther" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUMTbIxSRWqpIVtDbjwZK41FFOV5eQf9eJECgm40Fj1 leonv@absol" ]; }; users.defaultUserShell = pkgs.zsh;