diff --git a/hosts/radish/containers.nix b/hosts/radish/containers.nix index cdc6d22..2e0e694 100644 --- a/hosts/radish/containers.nix +++ b/hosts/radish/containers.nix @@ -1,8 +1,10 @@ { ... }: { - virtualisation.docker.storageDriver = "btrfs"; - virtualisation.docker.rootless = { + virtualisation.docker = { + storageDriver = "btrfs"; enable = true; - setSocketVariable = true; }; + + users.users.jokke.extraGroups = [ "docker" ]; + users.users.moco.extraGroups = [ "docker" ]; }