system: change registy

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-15 10:28:58 +03:00
parent 95a01dc276
commit a19ba93fa8
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215

View file

@ -135,16 +135,16 @@ in
registry = registry =
let let
repo = "https://git.pleshevski.ru/pleshevskiy"; repo = name: "https://git.pleshevski.ru/";
mkRegistry = id: url: { mkRegistry = id: url: {
from = { type = "indirect"; inherit id; }; from = { type = "indirect"; inherit id; };
to = { type = "git"; inherit url; }; to = { type = "git"; inherit url; };
}; };
in in
{ {
templates = mkRegistry "tmpl" "${repo}/templates"; templates = mkRegistry "tmpl" "${repo "mynix"}/templates";
vnetod = mkRegistry "vnetod" "${repo}/vnetod"; vnetod = mkRegistry "vnetod" "${repo "pleshevskiy"}/vnetod";
tas = mkRegistry "tas" "${repo}/tas"; tas = mkRegistry "tas" "${repo "pleshevskiy"}/tas";
}; };
}; };