infra/users/mic92.nix

17 lines
299 B
Nix
Raw Permalink Normal View History

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