From 01fdbeb78c3264db14fb8892dc8aa7f2c66a901d Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Sun, 31 Mar 2024 17:15:43 +0200 Subject: [PATCH] fix error --- users/anon/default.nix | 1 + users/option.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/users/anon/default.nix b/users/anon/default.nix index 8e58d15..6026ff6 100644 --- a/users/anon/default.nix +++ b/users/anon/default.nix @@ -7,6 +7,7 @@ { imports = [ ../default.nix ]; mainUser.name = "anon"; + mainUser.sshKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFeP6qtVqE/gu72ZUZE8cdRi3INiUW9NqDR7SjXIzTw2 kopatz"; home-manager = { users.${config.mainUser.name} = import ./home.nix; diff --git a/users/option.nix b/users/option.nix index a1d5f46..37b5692 100644 --- a/users/option.nix +++ b/users/option.nix @@ -18,6 +18,6 @@ sshKey = lib.mkOption { default = throw "No ssh key specified"; description = "Public key of the user"; - } + }; }; }