From 9413472ea0de2415283dc732a486532bd6d63f63 Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Wed, 8 Mar 2023 18:20:04 -0700 Subject: [PATCH] Update URLs in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 60e00c3..f09dd61 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add the repository to `~/.config/nixpkgs/overlays.nix`: ```nix [ - (import (builtins.fetchTarball "https://github.com/tadeokondrak/vs-overlay/archive/master.tar.gz")) + (import (builtins.fetchTarball "https://github.com/nix-community/vs-overlay/archive/master.tar.gz")) ] ``` @@ -19,7 +19,7 @@ Add the repository to the `nixpkgs.overlays` option of `configuration.nix`: ```nix { nixpkgs.overlays = [ - (import (builtins.fetchTarball "https://github.com/tadeokondrak/vs-overlay/archive/master.tar.gz")) + (import (builtins.fetchTarball "https://github.com/nix-community/vs-overlay/archive/master.tar.gz")) ]; } ``` @@ -37,7 +37,7 @@ In `flake.nix`, add `vs-overlay` as an input: ```nix { - inputs.vs-overlay.url = "github:tadeokondrak/vs-overlay"; + inputs.vs-overlay.url = "github:nix-community/vs-overlay"; } ``` @@ -110,7 +110,7 @@ In `flake.nix`, add `vs-overlay` as an input: ```nix { - inputs.vs-overlay.url = "github:tadeokondrak/vs-overlay"; + inputs.vs-overlay.url = "github:nix-community/vs-overlay"; } ```