infra/users/mic92.nix
Robert Hensing 0a1a0813dd Revert "add roberth to server"
I've resolved yesterday's issue and I don't need access to the
local hercules-ci-agent logs for the time being.

This reverts commit 728948a801.
2022-09-08 16:29:44 +02:00

19 lines
420 B
Nix

{ config, pkgs, lib, ... }:
let
userLib = import ./lib.nix { inherit lib; };
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKbBp2dH2X3dcU1zh+xW3ZsdYROKpJd3n13ssOP092qE joerg@turingmachine"
];
in
{
users.users.mic92 = {
openssh.authorizedKeys.keys = keys;
useDefaultShell = true;
isNormalUser = true;
extraGroups = [
"wheel"
"trusted"
];
uid = userLib.mkUid "micc";
};
}