mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
17 lines
288 B
Nix
17 lines
288 B
Nix
{tree, ...}: {
|
|
users.users.kat = {
|
|
uid = 1000;
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys = {
|
|
inherit (tree.kat.user.data) keys;
|
|
};
|
|
extraGroups = [
|
|
"wheel"
|
|
"video"
|
|
"systemd-journal"
|
|
"plugdev"
|
|
"input"
|
|
"uinput"
|
|
];
|
|
};
|
|
}
|