fix: import nixpkgs reproducibly
All checks were successful
Build packages / Build derivations (push) Successful in 2m38s

https://nix.dev/guides/best-practices#reproducible-nixpkgs-configuration
This commit is contained in:
uku 2025-06-02 10:31:19 +02:00
parent be626bff90
commit d88268d940
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o

View file

@ -1,4 +1,7 @@
{
pkgs ? import <nixpkgs> { },
}:
let
pkgs = import <nixpkgs> {
config = { };
overlays = [ ];
};
in
import ./pkgs/all-packages.nix { } pkgs