fix flake.nix usage
Maybe the schema was changed but assigning nixpkgs in the current no longer works.
This commit is contained in:
parent
f6440452de
commit
4dd0683963
1 changed files with 6 additions and 7 deletions
13
flake.nix
13
flake.nix
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue