nixfiles/users/chaoticryptidz.nix

19 lines
393 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, ... }: {
users.users.chaoticryptidz = {
isNormalUser = true;
2021-12-31 12:53:52 +00:00
extraGroups = [
"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
};
}