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

+4 -3
+4 -3
flake.nix
··· 417 417 ln -s ${pkgs.coreutils}/bin/env $out/usr/bin/env 418 418 ln -s ${pkgs.bashInteractive}/bin/bash $out/bin/sh 419 419 420 - # https://github.com/containerd/containerd/issues/12683 421 - ln --symbolic --force "$(realpath --relative-to=$out/etc $out/etc/passwd)" $out/etc/passwd 422 - ln --symbolic --force "$(realpath --relative-to=$out/etc $out/etc/group)" $out/etc/group 423 420 424 421 '' 425 422 + (lib.optionalString (flake-registry != null) '' ··· 443 440 extraCommands = '' 444 441 rm -rf nix-support 445 442 ln -s /nix/var/nix/profiles nix/var/nix/gcroots/profiles 443 + 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 446 447 ''; 447 448 fakeRootCommands = '' 448 449 chmod 1777 tmp