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 =
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";
};
};