Quote URLs in NixOS example

pull/998/head
RGBCube 2023-12-06 22:52:52 +03:00 committed by GitHub
parent 8bd6b0697b
commit 5ccf76e849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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";
};
};