fix docker-service group

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-06-12 21:30:05 -04:00 committed by Alice Huston
parent 1c75a6962e
commit a4c8213943

View File

@ -3,9 +3,13 @@
{
virtualisation.docker.daemon.settings.data-root = "/var/lib/docker2";
users.users.docker-service = {
users = {
users.docker-service = {
isSystemUser = true;
group = "docker-service";
extraGroups = [ "docker" ];
uid = 600;
};
groups.docker-service = { };
};
}