From 5ccf76e849df4f3c3d2477a96a53ed48853e3581 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Wed, 6 Dec 2023 22:52:52 +0300 Subject: [PATCH] Quote URLs in NixOS example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fb07a2c0..0d4f31de4 100644 --- a/README.md +++ b/README.md @@ -521,11 +521,11 @@ Below is a sample on how to add it to a NixOS overlay: ```nix { inputs = { - nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # NOTE: This will require your git SSH access to the repo ghostty = { - url = git+ssh://git@github.com/mitchellh/ghostty; + url = "git+ssh://git@github.com/mitchellh/ghostty"; inputs.nixpkgs.follows = "nixpkgs"; }; };