all repos — nixfiles @ 8cb26779249953cc7882bc11135779de035fa2bc

System and user configuration, managed by nix and home-manager

add nur overlay

Alan Pearce
commit

8cb26779249953cc7882bc11135779de035fa2bc

parent

cd9c6b3a5930e366fbdd982e7e37829dfedbcb4e

2 files changed, 15 insertions(+), 0 deletions(-)

jump to
M nix/sources.jsonnix/sources.json
@@ -1,4 +1,16 @@
{ + "nur": { + "branch": "master", + "description": "Nix User Repository: User contributed nix packages [maintainer=@Mic92]", + "homepage": "https://nur.nix-community.org/", + "owner": "nix-community", + "repo": "NUR", + "rev": "a0994b379a309930565f13cafef0f7daa31420d5", + "sha256": "1x8bha3i34qxpakbp1cxq36klnxsa6v2inrn8jhhfkzybbwfyncx", + "type": "tarball", + "url": "https://github.com/nix-community/NUR/archive/a0994b379a309930565f13cafef0f7daa31420d5.tar.gz", + "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" + }, "agenix": { "branch": "main", "description": "age-encrypted secrets for NixOS and Home manager",
A overlays/nur.nix
@@ -0,0 +1,3 @@
+self: super: { + nur = import <nur> { pkgs = self; }; +}