From db608b02680b3217e074d624d1e81ee0aa7b3ccf Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Thu, 20 Jul 2023 23:37:14 +0100 Subject: [PATCH] try to fix --- users/configs/system/nvim/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/users/configs/system/nvim/default.nix b/users/configs/system/nvim/default.nix index 118cff2..d26528a 100644 --- a/users/configs/system/nvim/default.nix +++ b/users/configs/system/nvim/default.nix @@ -1,9 +1,12 @@ {pkgs, ...}: let nvim = pkgs.stdenv.mkDerivation { name = "nvim"; - src = pkgs.fetchgit { - url = "https://git.broccoli.town/dp/nvim"; - sha256 = "sha256-yhbgfKarel8ACIWvIw2fM1qFoZnH8O+5+oNVnMZwdjo="; + src = pkgs.fetchFromGitea { + domain = "git.broccoli.town"; + owner = "dp"; + repo = "nvim"; + rev = "6e966c1e2b9179a13c12ba5a516089b4e34d15f0"; + hash = "sha256-5KZywTbk9CGXRXbymLV5WQu5qpLaJ4lVq5gXN9LUD5Y="; }; installPhase = ''