diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-07 16:35:13 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-07 16:35:13 -0800 |
commit | 96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e (patch) | |
tree | 038810c5cdaec155032c16d6a78b3cb968160645 /overlays | |
parent | 8207397eacd38b2f49faf4f77a5d0759d1fd556e (diff) | |
download | nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar.gz nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar.bz2 nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar.lz nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar.xz nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.tar.zst nix-96d7408d67b2cf97b9e81a4d8a70ae6cfba81a2e.zip |
Add old nixpkgs for working 6.10 kernel
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index 8437fef..22f8307 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -4,6 +4,7 @@ # nixpkgs.overlays = [ # outputs.overlays.additions # outputs.overlays.modifications +# outputs.overlays.67e692392-packages # outputs.overlays.master-packages # outputs.overlays.stable-packages # ] @@ -21,6 +22,13 @@ # }); }; + 67e692392-packages = final: _prev: { + 67e692392 = import inputs.nixpkgs-67e692392 { + inherit (final) system; + config.allowUnfree = true; + }; + }; + # When applied, the master nixpkgs set (declared in the flake inputs) will # be accessible through 'pkgs.master' master-packages = final: _prev: { |