From 665180c890db1bc68aa1b93ba4eead8767a0144e Mon Sep 17 00:00:00 2001 From: a-kenji Date: Fri, 8 Nov 2024 12:23:04 +0100 Subject: [PATCH] templates: prefer non-shallow clones --- templates/minimal-flake-parts/flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/minimal-flake-parts/flake.nix b/templates/minimal-flake-parts/flake.nix index 219180d93..c8dde1440 100644 --- a/templates/minimal-flake-parts/flake.nix +++ b/templates/minimal-flake-parts/flake.nix @@ -2,11 +2,11 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - clan.url = "git+https://git.clan.lol/clan/clan-core?shallow=1"; + clan.url = "git+https://git.clan.lol/clan/clan-core"; clan.inputs.nixpkgs.follows = "nixpkgs"; clan.inputs.flake-parts.follows = "flake-parts"; - flake-parts.url = "github:hercules-ci/flake-parts?shallow=1"; + flake-parts.url = "github:hercules-ci/flake-parts"; flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs"; };