diff --git a/README.md b/README.md index f62a2a8c3..19fcf6d5f 100644 --- a/README.md +++ b/README.md @@ -147,10 +147,11 @@ outputs = {self, nixpkgs, nur }: nixosConfigurations.myConfig = nixpkgs.lib.nixosSystem { # ... modules = [ - ({ - nixpkgs.overlays = [ nur."${nur-username}".overlays."${anOverlay}" ] - }) - nur."${nur-username}".modules.${aModule} + # this adds a nur attribute set that can be used for example like this: + # ({ pkgs, ... }: { + # environment.systemPackages = [ pkgs.nur.repos.mic92.hello-nur ]; + # }) + { nixpkgs.overlays = [ nur.overlay ]; } ]; }; }