From 52c6bce5a1b8463e74ba888c2582c5ceb7e1191e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Wed, 1 Jan 2025 21:50:34 +0100 Subject: [PATCH] chore: remove legacypackages --- SwarselSystems.org | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index 0806dd5..129840e 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -419,7 +419,7 @@ In this section I am creating some attributes that define general concepts of my checks = lib.swarselsystems.forAllSystems (system: let - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = lib.swarselsystems.pkgsFor.${system}; in import ./checks { inherit self inputs system pkgs; } ); diff --git a/flake.nix b/flake.nix index ec980a9..e0e2ae9 100644 --- a/flake.nix +++ b/flake.nix @@ -171,7 +171,7 @@ checks = lib.swarselsystems.forAllSystems (system: let - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = lib.swarselsystems.pkgsFor.${system}; in import ./checks { inherit self inputs system pkgs; } );