nixos-config/modules/sean/default.nix

15 lines
335 B
Nix
Raw Normal View History

2020-09-18 13:54:09 +00:00
{ config, pkgs, ... }:
{
users.users = {
sean = {
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
};
test = {
isNormalUser = true;
isSystemUser = true;
};
};
}