base/base.nix: fix incorrect ssh key example

This commit is contained in:
2025-07-08 00:31:58 -07:00
parent 30e1a3837b
commit ce9cdc4be6

View File

@@ -10,8 +10,9 @@ in {
type = types.listOf types.str;
default = [ ];
description = "List of SSH keys to grant to the primary user";
example =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILiUy2yjIkdryH7pYMdkCNryy9gceqXJ7bhtMvvpPBIk etorres@xenon";
example = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILiUy2yjIkdryH7pYMdkCNryy9gceqXJ7bhtMvvpPBIk etorres@xenon"
];
};
};