nixfiles/users/chaoticryptidz.nix

11 lines
347 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, ... }: {
users.users.chaoticryptidz = {
isNormalUser = true;
2021-12-26 14:07:09 +00:00
extraGroups =
2021-12-30 22:01:37 +00:00
[ "wheel" "disk" "video" "systemd-journal" "plugdev" "vfio" "input" "uinput" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL4L1eBZzYXZNGBucTn/eOFp48el9JPiYt9iXQDpBSg/ chaoticryptidz@owo.monster"
];
2021-12-20 23:48:26 +00:00
};
}