Merge pull request #266151 from JulienMalka/append-secret-reproducible

authored by Ryan Lahfa and committed by GitHub cbd983e1 7e869d89

+1 -1
+1 -1
nixos/modules/system/boot/stage-1.nix
··· 435 435 } 436 436 437 437 # mindepth 1 so that we don't change the mode of / 438 - (cd "$tmp" && find . -mindepth 1 -print0 | sort -z | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @-) | \ 438 + (cd "$tmp" && find . -mindepth 1 | xargs touch -amt 197001010000 && find . -mindepth 1 -print0 | sort -z | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @-) | \ 439 439 ${compressorExe} ${lib.escapeShellArgs initialRamdisk.compressorArgs} >> "$1" 440 440 ''; 441 441