diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/default.nix b/default.nix index 714dd75..fed42e8 100644 --- a/default.nix +++ b/default.nix @@ -1,16 +1,11 @@ -let - lock = builtins.fromJSON (builtins.readFile ./flake.lock); - fetchTree = import ./nix/fetchTree.nix; - flakeSources = builtins.mapAttrs (_: node: fetchTree node.locked) lock.nodes; -in { - pkgs ? import sources.nixpkgs { + pkgs ? import nixpkgs { inherit system; config = { }; overlays = [ ]; }, + nixpkgs ? <nixpkgs>, system ? builtins.currentSystem, - sources ? flakeSources, }: { website = pkgs.callPackage ./nix/package.nix { }; |
