diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-07-10 13:01:26 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-07-10 13:01:26 -0700 |
| commit | bc6c947a4e2b6028636a67989e3be3dd83034cf4 (patch) | |
| tree | c6feefd1058de112d11cde16f5af81d7fc460924 | |
| parent | 541bfa344b4be23968b776542b7ebaa332f19035 (diff) | |
| download | nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar.gz nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar.bz2 nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar.lz nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar.xz nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.tar.zst nix-bc6c947a4e2b6028636a67989e3be3dd83034cf4.zip | |
Attempt explicit use of lib
| -rw-r--r-- | flake.nix | 2 | ||||
| -rw-r--r-- | overlays/default.nix | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -404,7 +404,7 @@ }; - overlays = import ./overlays {inherit inputs;}; + overlays = import ./overlays {inherit inputs lib;}; packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system}); }; diff --git a/overlays/default.nix b/overlays/default.nix index c21ea8d..fb0d15d 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -14,7 +14,7 @@ # outputs.overlays.wine9_22-packages # ] -{inputs, ...}: { +{inputs, lib, ...}: { # This one brings our custom packages from the 'pkgs' directory additions = final: _prev: import ../pkgs final.pkgs; |
