From 7bf79ef4a802a96049fbabed912541344bb1df81 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Tue, 24 Oct 2023 17:54:10 +0200 Subject: [PATCH] fix: refactor --- template/iso.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/iso.nix b/template/iso.nix index fde5531..1d1c671 100644 --- a/template/iso.nix +++ b/template/iso.nix @@ -14,6 +14,6 @@ # Enable SSH in the boot process. systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ]; users.users.root.openssh.authorizedKeys.keys = [ - (builtins.readFile ./template/nitrokey.pub) + (builtins.readFile ./nitrokey.pub) ]; }