12 lines
259 B
Nix
12 lines
259 B
Nix
{
|
|
users.users.lukas = {
|
|
isNormalUser = true;
|
|
description = "lukas";
|
|
extraGroups = [ "networkmanager" "wheel" "docker"];
|
|
};
|
|
|
|
# Autologin
|
|
services.displayManager.autoLogin.enable = true;
|
|
services.displayManager.autoLogin.user = "lukas";
|
|
}
|