fix flake.nix usage

Maybe the schema was changed but assigning nixpkgs in the current no longer works.
This commit is contained in:
Jörg Thalheim 2020-07-06 11:10:08 +01:00
parent f6440452de
commit 4dd0683963
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -1,13 +1,12 @@
{
description = "Nix User Repository";
outputs = { self, nixpkgs }:
{
overlay = final: prev: {
nur = import ./default.nix {
nurpkgs = nixpkgs;
pkgs = nixpkgs.pkgs;
};
outputs = { self }: {
overlay = final: prev: {
nur = import ./default.nix {
nurpkgs = prev;
pkgs = prev;
};
};
};
}