From e81d8d5c8f81a219e5238511958a7c9ea76683b8 Mon Sep 17 00:00:00 2001 From: Shivam Singh <103785990+Shivam250702@users.noreply.github.com> Date: Mon, 30 Oct 2023 16:50:45 +0530 Subject: [PATCH] Update README.md Removed grammatical errors --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4e1202750..e4a50cef1 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Instead use: ### Using modules overlays or library functions in NixOS -If you intend to use modules, overlays or library functions in your NixOS configuration.nix, you need to take care to not introduce infinite recursion. Specifically, you need to import NUR like this in the modules: +If you intend to use modules, overlays or library functions in your NixOS configuration.nix, you need to take care not to introduce infinite recursion. Specifically, you need to import NUR like this in the modules: ```nix { pkgs, config, lib, ... }: @@ -199,8 +199,8 @@ repository, which contains all nix expressions from all users, via ## How to add your own repository. -First create a repository that contains a `default.nix` in its top-level directory. -We also provide [repository template](https://github.com/nix-community/nur-packages-template) that contains +First, create a repository that contains a `default.nix` in its top-level directory. +We also provide a [repository template](https://github.com/nix-community/nur-packages-template) that contains a prepared directory structure. DO NOT import packages for example `with import {};`. @@ -275,7 +275,7 @@ For development convenience, you can also set a default value for the pkgs argum $ nix-build -A hello-nur ``` -Add your own repository to in the `repos.json` of NUR: +Add your own repository to the `repos.json` of NUR: ```console $ git clone --depth 1 https://github.com/nix-community/NUR @@ -297,9 +297,9 @@ edit the file `repos.json`: } ``` -At the moment each URL must point to a git repository. By running `bin/nur update` +At the moment, each URL must point to a git repository. By running `bin/nur update` the corresponding `repos.json.lock` is updated and the repository is tested. This will -perform also an evaluation check, which must be passed for your repository. Commit the changed +also perform an evaluation check, which must be passed for your repository. Commit the changed `repos.json` but NOT `repos.json.lock` ```