caddy: add to hakkonaut group
All checks were successful
continuous-integration/drone/push Build is passing

Add public SSH key to hakkonaut user
This commit is contained in:
teutat3s 2023-01-29 17:39:34 +01:00
parent 0e3b602809
commit 997561f817
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,7 @@
}: {
services.caddy = {
enable = lib.mkForce true;
group = "hakkonaut";
email = "admins@pub.solar";
globalConfig = lib.mkForce "";
virtualHosts = {

View file

@ -55,13 +55,17 @@ in {
}
];
# Machine user for CI pipelines
users.users.hakkonaut = {
description = "CI and automation user";
home = "/var/nix/iso-cache";
useDefaultShell = true;
uid = 995;
uid = 998;
group = "hakkonaut";
isSystemUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGP5MvCwNRtCcP1pSDrn0XZTNlpOqYnjHDm9/OI4hECW hakkonaut@flora-6"
];
};
users.groups.hakkonaut = {};