diff options
author | ozwaldorf <[email protected]> | 2024-04-15 01:32:43 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-15 01:32:43 -0400 |
commit | a5e79676c4bd22fc5902182acf0667907202a465 (patch) | |
tree | 46e52e13225d7a0ae53a821a71bfa43ea2a92560 | |
parent | 477686adb0cf21f2b7be40c7017d17222e0522d0 (diff) |
flake: switch default overlay to insert for wider compatibility (#282)
Advanced users can opt into using the override flake for layering on top of the flake, given they are on a compatible nixpkgs version and know what they are doing
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ in { overlays = rec { - default = override; + default = insert; # Override onto the input nixpkgs override = _: prev: mkPackage prev; # Insert using the locked nixpkgs |