nixfiles/users/chaos.nix

22 lines
403 B
Nix

{...}: {
users.users.chaos = {
uid = 1000;
isNormalUser = true;
extraGroups = [
"wheel"
"disk"
"video"
"systemd-journal"
"plugdev"
"vfio"
"input"
"uinput"
"audio"
"rtkit"
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEZpvkllLt7HinNpisOx7hWT2br68UoCg0sXKTxHEeUB chaos@chaos"
];
};
}