fix: import nixpkgs reproducibly
All checks were successful
Build packages / Build derivations (push) Successful in 2m38s
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:
parent
be626bff90
commit
d88268d940
1 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
||||||
{
|
let
|
||||||
pkgs ? import <nixpkgs> { },
|
pkgs = import <nixpkgs> {
|
||||||
}:
|
config = { };
|
||||||
|
overlays = [ ];
|
||||||
|
};
|
||||||
|
in
|
||||||
import ./pkgs/all-packages.nix { } pkgs
|
import ./pkgs/all-packages.nix { } pkgs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue