- Move forgejo-deploy pubkey from users/steffen to hosts/cryodev-main/ (deploy key belongs to the host, not a user) - Remove deploy key from steffen's authorized keys - Add users ralph and benjamin (pubkeys pending) - Register both new users in cryodev-main host config
11 lines
166 B
Nix
11 lines
166 B
Nix
{
|
|
normalUsers.ralph = {
|
|
extraGroups = [
|
|
"wheel"
|
|
];
|
|
sshKeyFiles = [
|
|
# TODO: Add ralph's public key
|
|
# ./pubkeys/ralph.pub
|
|
];
|
|
};
|
|
}
|