From 1308061f08be4f4f4b48e985ba9e4855a1c6b369 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Tue, 24 Oct 2023 10:02:30 +0200 Subject: [PATCH] docs: nur and unstable --- modules/nur-and-unstable.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/nur-and-unstable.nix b/modules/nur-and-unstable.nix index 90a0d1a..9bdc231 100644 --- a/modules/nur-and-unstable.nix +++ b/modules/nur-and-unstable.nix @@ -1,6 +1,6 @@ { config, pkgs, ... }: { - # Import NUR. + # How NUR (or unstable) can be imported without `niv`. #nixpkgs.config.packageOverrides = pkgs: { # nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { # inherit pkgs; @@ -18,8 +18,10 @@ }; }; - # Test if NUR was imported successfully. #environment.systemPackages = with pkgs; [ + # # Example NUR usage: # nur.repos.mic92.hello-nur + # # Example unstable usage: + # unstable.nano #]; }