15 lines
419 B
Nix
15 lines
419 B
Nix
{ 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; [
|
|
];
|
|
};
|
|
}
|