[Containers] Adds me to the docker group by default with container-dev

This commit is contained in:
2026-05-21 16:20:09 -07:00
parent f72eb29392
commit 518ad143e0

View File

@@ -23,4 +23,7 @@
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
''; '';
}; };
# add me to the docker group so I can access it.
users.users.drew.extraGroups = [ "docker" ];
} }