From 462f2e3276432932c375f214363780a37a1148b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Fri, 12 May 2023 15:20:55 +0200 Subject: [PATCH] refactor: rename pkgs to use them for nix run --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 365a476..cdb572c 100644 --- a/flake.nix +++ b/flake.nix @@ -161,8 +161,6 @@ with lib; { inherit lib; - pkgs = forEachSystem pkgsFor; - # ╔══════════════════════════════════════════════════════════╗ # ║ NixOS Configurations ║ # ╚══════════════════════════════════════════════════════════╝ @@ -195,6 +193,8 @@ pre-commit-check = pre-commit-check system; }); + legacyPackages = forEachSystem pkgsFor; + packages = forEachSystem (system: let pkgs = pkgsFor system;