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

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