consistently use tarball urls in documentation

otherwise users not using our templates will find themselves missing
git.
This commit is contained in:
Jörg Thalheim
2025-08-04 11:20:14 +02:00
parent ff7b49be5f
commit d51d656391
5 changed files with 6 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ manage your configurations with clan.
```nix
inputs.clan-core = {
url = "git+https://git.clan.lol/clan/clan-core";
url = "https://git.clan.lol/clan/clan-core/archive/main.tar.gz";
# Don't do this if your machines are on nixpkgs stable.
inputs.nixpkgs.follows = "nixpkgs";
}
@@ -79,7 +79,7 @@ For the provide flake example, your flake should now look like this:
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.clan-core = {
url = "git+https://git.clan.lol/clan/clan-core";
url = "https://git.clan.lol/clan/clan-core/archive/main.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};