nixfiles/users/chaos.nix

22 lines
411 B
Nix
Raw Normal View History

{config, ...}: {
users.users.chaos = {
2022-01-29 19:55:58 +00:00
uid = 1000;
2021-12-20 23:48:26 +00:00
isNormalUser = true;
2021-12-31 12:53:52 +00:00
extraGroups = [
"wheel"
"disk"
"video"
"systemd-journal"
"plugdev"
"vfio"
"input"
"uinput"
2022-01-29 23:51:11 +00:00
"audio"
2022-06-01 07:13:31 +01:00
"rtkit"
2021-12-31 12:53:52 +00:00
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAeN3T1aZkTm5xS0b66cRDyKUbdEQCFyzVWXeW+eIbsa chaos@chaos"
];
2021-12-20 23:48:26 +00:00
};
}