diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-31 11:15:38 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-31 11:15:38 -0800 |
commit | 161e1e00426741ed72daf4ce3a4bd1a7bab4bc82 (patch) | |
tree | 813150e6f651bc181c8a262eb13ed985122ac27f /overlays/default.nix | |
parent | 9282caadd34bf3bd07986ff6cc6e9e6e59438851 (diff) | |
download | nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.gz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.bz2 nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.lz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.xz nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.tar.zst nix-161e1e00426741ed72daf4ce3a4bd1a7bab4bc82.zip |
Add tfp-hpa from PR 369712
Diffstat (limited to 'overlays/default.nix')
-rw-r--r-- | overlays/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index e6b5988..ff0e836 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -6,6 +6,7 @@ # outputs.overlays.modifications # outputs.overlays."67e692392-packages" # outputs.overlays.master-packages +# outputs.overlays.pr369712-packages # outputs.overlays.stable-packages # ] @@ -38,12 +39,12 @@ }; }; - #pr363651-packages = final: _prev: { - # pr363651 = import inputs.nixpkgs-pr363651 { - # inherit (final) system; - # config.allowUnfree = true; - # }; - #}; + pr369712-packages = final: _prev: { + pr369712 = import inputs.nixpkgs-pr369712 { + inherit (final) system; + config.allowUnfree = true; + }; + }; # When applied, the stable nixpkgs set (declared in the flake inputs) will # be accessible through 'pkgs.stable' |