all repos — nixfiles @ 88661823ed8563dafa4f8304e537f4ae5d9c2341

System and user configuration, managed by nix and home-manager

system/settings/configuration/user.nix (view raw)

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" "video" ];
    shell = "/run/current-system/sw/bin/zsh";
    initialPassword = "password";
    home = "/home/alan";
    uid = 1000;
  };
}