aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-07-10 13:01:26 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-07-10 13:01:26 -0700
commitbc6c947a4e2b6028636a67989e3be3dd83034cf4 (patch)
treec6feefd1058de112d11cde16f5af81d7fc460924
parent541bfa344b4be23968b776542b7ebaa332f19035 (diff)
downloadnix-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
Diffstat (limited to '')
-rw-r--r--flake.nix2
-rw-r--r--overlays/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 353697d..e29b3d4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;