I am trying to remove the group 'base.group_no_onefrom the groupbase.group_user. Also I tried to remove the default template user base.default_userfrom thebase.group_no_one`.
Here is what I tried,
Remove the implied ids,
<record id="base.group_user" model="res.groups">
<field name="implied_ids" eval="[(3, ref('base.group_no_one'))]"/>
</record>
Remove the user
<record id="base.group_no_one" model="res.groups">
<field name="users" eval="[(3, ref('base.default_user'))]"/>
</record>
But it didn't work.