NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix links

+11 -2
+11 -2
flake.nix
··· 442 442 ln -s /nix/var/nix/profiles nix/var/nix/gcroots/profiles 443 443 444 444 # https://github.com/containerd/containerd/issues/12683 445 - ln --symbolic --force "$(realpath --relative-to=etc etc/passwd)" etc/passwd 446 - ln --symbolic --force "$(realpath --relative-to=etc etc/group)" etc/group 445 + 446 + tmp="$(realpath --relative-to=etc etc/passwd)" 447 + rm -f etc/passwd 448 + cp "$tmp" etc/passwd 449 + 450 + tmp="$(realpath --relative-to=etc etc/group)" 451 + rm -f etc/group 452 + cp "$tmp" etc/group 453 + 454 + # ln --symbolic --force "$(realpath --relative-to=etc etc/passwd)" etc/passwd 455 + # ln --symbolic --force "$(realpath --relative-to=etc etc/group)" etc/group 447 456 ''; 448 457 fakeRootCommands = '' 449 458 chmod 1777 tmp