Fix buildkit access to SSH agent.
This commit is contained in:
parent
8b1e76d9d7
commit
4019e6d132
@ -9,10 +9,15 @@
|
|||||||
imports = [ ];
|
imports = [ ];
|
||||||
|
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
virtualisation.docker.rootless = {
|
# Use docker activation
|
||||||
enable = true;
|
virtualisation.docker.enableOnBoot = false;
|
||||||
setSocketVariable = true;
|
# Rootless docker breaks access to ssh for buildkit.
|
||||||
};
|
# virtualisation.docker.rootless = {
|
||||||
|
# enable = true;
|
||||||
|
# setSocketVariable = true;
|
||||||
|
# };
|
||||||
|
# Give docker access to ssh for fetching repos with buildkit.
|
||||||
|
virtualisation.docker.extraPackages = [ pkgs.openssh ];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
docker-buildx
|
docker-buildx
|
||||||
];
|
];
|
||||||
@ -27,16 +32,18 @@
|
|||||||
mode = "0740";
|
mode = "0740";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
users.talexander = {
|
# users.talexander = {
|
||||||
directories = [
|
# directories = [
|
||||||
{
|
# {
|
||||||
directory = ".local/share/docker";
|
# directory = ".local/share/docker";
|
||||||
user = "talexander";
|
# user = "talexander";
|
||||||
group = "talexander";
|
# group = "talexander";
|
||||||
mode = "0740";
|
# mode = "0740";
|
||||||
}
|
# }
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Needed for non-rootless docker
|
||||||
|
users.users.talexander.extraGroups = [ "docker" ];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user