nix: updated nur

This commit is contained in:
Primrose 2024-07-23 21:34:12 +02:00
parent 4b3f30a7b7
commit d39003dabf
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
5 changed files with 28 additions and 15 deletions

View file

@ -1,4 +1,5 @@
{ inputs, ... }:
{
perSystem =
{
@ -25,6 +26,13 @@
};
})
(final: _: {
nur = import inputs.nur {
nurpkgs = final;
pkgs = final;
};
})
(_: _: { myPkgs = self'.packages; }) # extend pkgs with my custom set
(import ./pins.nix)
(import ./patches.nix)

View file

@ -23,17 +23,4 @@ in
inherit system;
config.allowUnfree = true;
};
nur =
import
(final.fetchFromGitHub {
owner = "nix-community";
repo = "nur";
rev = "9bf273a054250a990e3751cc7ae280c6ff5b4220";
hash = "sha256-2Cr9RYM276lo1a9g3QaflZy7/TxtDXpAhxWF3WsEPhQ=";
})
{
nurpkgs = final;
pkgs = final;
};
}