infra/users/zimbatm.nix

17 lines
303 B
Nix
Raw Permalink Normal View History

2022-12-31 07:24:17 +01:00
{ lib, ... }:
let
userLib = import ./lib.nix { inherit lib; };
2020-01-22 12:37:13 +01:00
in
{
users.users.zimbatm = {
2023-12-31 12:42:56 +10:00
openssh.authorizedKeys.keyFiles = [ ./keys/zimbatm ];
useDefaultShell = true;
isNormalUser = true;
extraGroups = [
2022-08-14 16:49:30 +02:00
"wheel"
"trusted"
];
uid = userLib.mkUid "zimb";
};
}