From 7e442273a3e9a49061c21a158d32039c1ead5035 Mon Sep 17 00:00:00 2001 From: r17x Date: Thu, 17 Oct 2024 13:39:53 +0700 Subject: [PATCH] docs: fix link in README --- README.md | 2 +- nvim.nix/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0656742..2ca1364 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ nix build github:r17x/universe#darwinConfigurations.$HOSTNAME.system -o /tmp/res ``` > [!NOTE] -> `$HOSTNAME` is only available by [hosts definitions](./nix/hosts/default.nix#L82:L83) +> `$HOSTNAME` is only available by [hosts definitions](./nix/hosts/default.nix#L107:L108) ## `Alias` Command List diff --git a/nvim.nix/README.md b/nvim.nix/README.md index 11bb0bb..d1ab08a 100644 --- a/nvim.nix/README.md +++ b/nvim.nix/README.md @@ -1,6 +1,6 @@ # Neovim over Nix -I manage and write Neovim configurations in Nix using Nixvim +I manage and write Neovim configurations in Nix using [Nixvim](https://nix-community.github.io/nixvim/) ## Configuring @@ -13,9 +13,9 @@ If you add a new configuration file, remember to add it to the To test your configuration simply run the following command ```bash -nix run . +nix run .#nvim # OR -nix run github:r17x/nvim.nix +nix run github:r17x/universe#nvim ```