From 1e416610428ff871e4e13e8740001765bf151b41 Mon Sep 17 00:00:00 2001 From: r-vdp Date: Thu, 30 Nov 2023 13:44:19 +0100 Subject: [PATCH] Don't set nixpkgs.config, it breaks some setups. Since 23.11 it is no longer allowed to set nixpkgs.config when nixpkgs.pkgs is also set. --- nixos/modules/github-runners/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixos/modules/github-runners/default.nix b/nixos/modules/github-runners/default.nix index aed23db..b4b37dd 100644 --- a/nixos/modules/github-runners/default.nix +++ b/nixos/modules/github-runners/default.nix @@ -57,12 +57,6 @@ in }) cfg); - nixpkgs.config.permittedInsecurePackages = [ - "nodejs-16.20.0" - "nodejs-16.20.1" - "nodejs-16.20.2" - ]; - systemd.services = flip mapAttrs' cfg (n: v: let svcName = "github-runner-${n}";