1
0
Pārlūkot izejas kodu

chore: Configure unstable Nixpkgs overlay

Zander Hawke 10 mēneši atpakaļ
vecāks
revīzija
efdc6f3ef2
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  1. 6 1
      overlays/default.nix

+ 6 - 1
overlays/default.nix

@@ -28,11 +28,16 @@
   unstable-packages = final: _prev: {
     unstable = import inputs.nixpkgs-unstable {
       system = final.system;
+
       overlays = [
         additions
         modifications
       ];
-      # config.allowUnfree = true;
+
+      config = {
+        allowUnfree = true;
+        allowUnsupportedSystem = true;
+      };
     };
   };
 }