mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 19:51:14 +00:00
26 lines
510 B
Nix
26 lines
510 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
users.users.crestline = {
|
|
isNormalUser = true;
|
|
description = "Crestline";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"wheel"
|
|
"input"
|
|
"dialout"
|
|
];
|
|
};
|
|
|
|
services.displayManager.autoLogin = {
|
|
enable = true;
|
|
user = "crestline";
|
|
};
|
|
services.xserver.displayManager.gdm.autoLogin.delay = 60;
|
|
|
|
home-manager.users.crestline = {
|
|
home.username = "crestline";
|
|
home.homeDirectory = "/home/crestline";
|
|
home.stateVersion = "25.05";
|
|
};
|
|
}
|