Files
nixos/users/lukas.nix
2025-06-15 18:21:36 +02:00

15 lines
276 B
Nix

{ config, pkgs, ... }:
{
users.users.lukas = {
isNormalUser = true;
description = "lukas";
extraGroups = [ "networkmanager" "wheel" ];
};
# Autologin
services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "lukas";
}