mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
14 lines
285 B
Nix
14 lines
285 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
users.users = {
|
|
sean = {
|
|
isNormalUser = true;
|
|
uid = 1000;
|
|
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
|
|
};
|
|
test = {
|
|
isNormalUser = true;
|
|
isSystemUser = true;
|
|
};
|
|
};
|
|
}
|