yep. it is. for example, if you dont want your admins to modify the templates do this...
admin/template.php
find:
Code:
if ($action=="modify") {
replace it with:
Code:
if ($action=="modify" && checklogperms($caneditadmin,1,"<p>You are not allowed to modify the templates.</p>")) {
bingo. only the $caneditadmin listed users will be able to edit from now on the templates. replace anywhere you want to block access to other admins with a similary line.