From 5604d4aca98f70943b3b86adf9b10fa27f944941 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:11:47 +1000 Subject: [PATCH] build02/nixpkgs-update: disable github and updatescript fetchers --- hosts/build02/nixpkgs-update.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/build02/nixpkgs-update.nix b/hosts/build02/nixpkgs-update.nix index 9c0e03c..761586c 100644 --- a/hosts/build02/nixpkgs-update.nix +++ b/hosts/build02/nixpkgs-update.nix @@ -17,7 +17,7 @@ let socat # used by worker script ]; - nixpkgs-update-github-releases' = "${inputs.nixpkgs-update-github-releases}/main.py"; + #nixpkgs-update-github-releases' = "${inputs.nixpkgs-update-github-releases}/main.py"; mkWorker = name: { after = [ "network-online.target" "nixpkgs-update-supervisor.service" ]; @@ -184,8 +184,8 @@ in systemd.services.nixpkgs-update-fetch-repology = mkFetcher "repology" "${nixpkgs-update-bin} fetch-repology"; - systemd.services.nixpkgs-update-fetch-updatescript = mkFetcher "updatescript" "${pkgs.nix}/bin/nix eval --raw -f ${./packages-with-update-script.nix}"; - systemd.services.nixpkgs-update-fetch-github = mkFetcher "github" nixpkgs-update-github-releases'; + #systemd.services.nixpkgs-update-fetch-updatescript = mkFetcher "updatescript" "${pkgs.nix}/bin/nix eval --raw -f ${./packages-with-update-script.nix}"; + #systemd.services.nixpkgs-update-fetch-github = mkFetcher "github" nixpkgs-update-github-releases'; systemd.services.nixpkgs-update-worker1 = mkWorker "worker1"; systemd.services.nixpkgs-update-worker2 = mkWorker "worker2";