nixos-config/system/set-users.nix

9 lines
149 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ ... }:
2024-07-30 22:56:44 +02:00
{
users.users.mo = {
isNormalUser = true;
description = "Mohamed Chrayed";
extraGroups = [ "networkmanager" "wheel" ];
};
}