mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
34 lines
636 B
Nix
Executable File
34 lines
636 B
Nix
Executable File
{
|
|
config,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
xlib.device.username = "oqyude";
|
|
|
|
users = {
|
|
users = {
|
|
"${xlib.device.username}" = {
|
|
isNormalUser = true;
|
|
description = "Jor Oqyude";
|
|
initialPassword = "1234";
|
|
extraGroups = [
|
|
"beets"
|
|
"audio"
|
|
"disk"
|
|
"gamemode"
|
|
"libvirtd"
|
|
"networkmanager"
|
|
"pipewire"
|
|
"qemu-libvirtd"
|
|
"wheel"
|
|
"immich"
|
|
];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKduJia+unaQQdN6X5syaHvnpIutO+yZwvfiCP4qKQ/P"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|