re-add builder users shell

formatting
This commit is contained in:
Gerg-L 2024-06-29 21:11:21 -04:00
parent 65638ecb1c
commit 71d799541f
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
3 changed files with 6 additions and 11 deletions

View file

@ -1,11 +1,11 @@
{ lib, config }:
{ config }:
{
users = {
groups.${config.services.forgejo.group} = { };
users = {
${config.services.forgejo.user} = {
isSystemUser = true;
group = config.services.forgejo.group;
inherit (config.services.forgejo) group;
extraGroups = [ "postgres" ];
openssh.authorizedKeys.keys = [ config.local.keys.gerg_gerg-desktop ];
};