fix error

This commit is contained in:
Kopatz
2024-03-31 17:15:43 +02:00
parent 4df86b98ff
commit 01fdbeb78c
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
{ {
imports = [ ../default.nix ]; imports = [ ../default.nix ];
mainUser.name = "anon"; mainUser.name = "anon";
mainUser.sshKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFeP6qtVqE/gu72ZUZE8cdRi3INiUW9NqDR7SjXIzTw2 kopatz";
home-manager = { home-manager = {
users.${config.mainUser.name} = import ./home.nix; users.${config.mainUser.name} = import ./home.nix;

View File

@@ -18,6 +18,6 @@
sshKey = lib.mkOption { sshKey = lib.mkOption {
default = throw "No ssh key specified"; default = throw "No ssh key specified";
description = "Public key of the user"; description = "Public key of the user";
} };
}; };
} }