From a19ba93fa81d1f89e5a2e87f5f9862a39167facb Mon Sep 17 00:00:00 2001 From: janabhumi Date: Thu, 15 Sep 2022 10:28:58 +0300 Subject: [PATCH] system: change registy --- system/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/configuration.nix b/system/configuration.nix index 6679c92..4b4bac4 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -135,16 +135,16 @@ in registry = let - repo = "https://git.pleshevski.ru/pleshevskiy"; + repo = name: "https://git.pleshevski.ru/"; mkRegistry = id: url: { from = { type = "indirect"; inherit id; }; to = { type = "git"; inherit url; }; }; in { - templates = mkRegistry "tmpl" "${repo}/templates"; - vnetod = mkRegistry "vnetod" "${repo}/vnetod"; - tas = mkRegistry "tas" "${repo}/tas"; + templates = mkRegistry "tmpl" "${repo "mynix"}/templates"; + vnetod = mkRegistry "vnetod" "${repo "pleshevskiy"}/vnetod"; + tas = mkRegistry "tas" "${repo "pleshevskiy"}/tas"; }; };