{ pkgs, ... }:
{
  users.users.willifan = {
    isNormalUser = true;
    description = "willifan";
    extraGroups = [ "networkmanager" "wheel" ];
    shell = pkgs.bash;
  };

}