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