radish: use regular instead of rootless docker

This commit is contained in:
Joakim Repomaa
2025-03-14 14:07:25 +02:00
parent a1dee56cce
commit 5c61ebf9ff

View File

@@ -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" ];
}