mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 19:51:14 +00:00
Deduplicate all applications and system settings
This commit is contained in:
22
users/crestline/crestline.nix
Normal file
22
users/crestline/crestline.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
users.users.crestline = {
|
||||
isNormalUser = true;
|
||||
description = "Crestline";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"input"
|
||||
"dialout"
|
||||
];
|
||||
packages = with pkgs; [ ];
|
||||
|
||||
};
|
||||
|
||||
services.displayManager.autoLogin = {
|
||||
enable = true;
|
||||
user = "crestline";
|
||||
};
|
||||
|
||||
services.xserver.displayManager.gdm.autoLogin.delay = 60;
|
||||
}
|
||||
Reference in New Issue
Block a user