From ec041138d2ed94b00ee20146111320a7e5b0783d Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 13 Jan 2025 12:58:36 +1000 Subject: [PATCH] modules/nixos/community-builder/users: update comment --- modules/nixos/community-builder/users.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/modules/nixos/community-builder/users.nix b/modules/nixos/community-builder/users.nix index 085f214..ff5f727 100644 --- a/modules/nixos/community-builder/users.nix +++ b/modules/nixos/community-builder/users.nix @@ -1,13 +1,9 @@ { config, pkgs, ... }: let users = [ - # 1. Generate an SSH key for your root account and add the public - # key to a file matching your name in ./keys/ - # - # 2. Copy / paste this in order, alphabetically: - # - # youruser.keys = ./keys/youruser; - # + # To add yourself: + # 1. Add an entry to this list. + # 2. Create a file in `keys` named your user name that contains your SSH key(s), separated by newlines. { name = "0x4A6F"; trusted = true;