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