infra/users/zowoq.nix

17 lines
299 B
Nix
Raw Permalink Normal View History

2022-12-31 07:24:17 +01:00
{ lib, ... }:
2022-10-22 09:53:24 +02:00
let
userLib = import ./lib.nix { inherit lib; };
in
{
users.users.zowoq = {
2023-12-31 12:42:56 +10:00
openssh.authorizedKeys.keyFiles = [ ./keys/zowoq ];
2022-10-22 09:53:24 +02:00
useDefaultShell = true;
isNormalUser = true;
extraGroups = [
"wheel"
"trusted"
];
uid = userLib.mkUid "zowo";
};
}