summary refs log tree commit diff stats
path: root/system/settings/configuration/user.nix
blob: def1a765604a72c500f0a08308282b71e2f8daec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{ users.extraUsers.alan = {
    description = "Alan Pearce";
    isNormalUser = true;
    extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "networkmanager" ];
    shell = "/run/current-system/sw/bin/zsh";
    initialPassword = "password";
    home = "/home/alan";
    uid = 1000;
  };
}