fix datetime issues in nix envs

This commit is contained in:
2025-11-17 15:22:08 +01:00
parent 69272f6a35
commit cda7245997

View File

@@ -13,6 +13,9 @@
{
devShell = with pkgs; mkShell {
buildInputs = dependencies;
shellHook = ''
unset SOURCE_DATE_EPOCH
'';
};
}
);