nixos-config/system/users.nix

9 lines
175 B
Nix
Raw Normal View History

{ config, pkgs, pkgs-stable,... }:
2024-07-30 22:56:44 +02:00
{
users.users.mo = {
isNormalUser = true;
description = "Mohamed Chrayed";
extraGroups = [ "networkmanager" "wheel" ];
};
}