Starting to break out for different XPS systems

This commit is contained in:
2025-10-10 22:30:51 -05:00
parent 3166ad5b32
commit 1e291f4366
37 changed files with 898 additions and 1041 deletions

14
system/users.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.jared = {
isNormalUser = true;
description = "Jared";
extraGroups = [ "networkmanager" "wheel" "video" "input" "audio" "docker" "seat" "render" ];
# Set initial password (user should change this after first login)
initialPassword = "changeme";
packages = with pkgs; [
];
};
}