nixos-config/modules/sean/default.nix

15 lines
285 B
Nix
Raw Normal View History

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