mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
30 lines
491 B
Nix
30 lines
491 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
xlib.device.username = "oqyude";
|
|
|
|
users = {
|
|
users = {
|
|
"${config.xlib.device.username}" = {
|
|
isNormalUser = true;
|
|
description = "Jor Oqyude";
|
|
initialPassword = "1234";
|
|
extraGroups = [
|
|
"beets"
|
|
"audio"
|
|
"disk"
|
|
"gamemode"
|
|
"libvirtd"
|
|
"networkmanager"
|
|
"pipewire"
|
|
"qemu-libvirtd"
|
|
"wheel"
|
|
"immich"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|