From 518ad143e066224b6c40da2069f9afdc0506359f Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Thu, 21 May 2026 16:20:09 -0700 Subject: [PATCH] [Containers] Adds me to the docker group by default with container-dev --- system/features/container-dev.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/features/container-dev.nix b/system/features/container-dev.nix index 3c338ef..3f6fcc0 100644 --- a/system/features/container-dev.nix +++ b/system/features/container-dev.nix @@ -23,4 +23,7 @@ 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" ]; }