summary refs log tree commit diff stats
path: root/system/modules/configuration/user.nix
blob: e7362bce294ac68d0ebd443576acb3b6feaeb8ba (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" "lp" "adbusers" "docker" "nitrokey" "dialout" "networkmanager" ];
    shell = "/run/current-system/sw/bin/zsh";
    home = "/home/alan";
    uid = 1000;
  };
}