Commit d9b6aa9039a6

Vincent Demeester <vincent@sbr.pm>
2026-01-08 14:51:20
feat(nixpkgs): Add wip-consolidated branch as flake input
- Enable access to WIP packages via pkgs.wip.* overlay - Track consolidated branch with daily auto-updates from aomi - Allow testing packages before they reach upstream Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent bde763e
Changed files (3)
overlays/default.nix
@@ -64,6 +64,10 @@ in
         })
       ];
     };
+    wip = import inputs.nixpkgs-wip-consolidated {
+      inherit (final) system;
+      config.allowUnfree = true;
+    };
   };
 
 }
flake.lock
@@ -746,6 +746,22 @@
         "type": "github"
       }
     },
+    "nixpkgs-wip-consolidated": {
+      "locked": {
+        "lastModified": 1767878347,
+        "narHash": "sha256-ZCAuZlF2wRYjOOXTFETTjqtBFFKPm/0zf660iGh8PWE=",
+        "owner": "vdemeester",
+        "repo": "nixpkgs",
+        "rev": "6cdf9862d3e7f5d2f4480b9b77c01ab0a339d5c1",
+        "type": "github"
+      },
+      "original": {
+        "owner": "vdemeester",
+        "ref": "wip-consolidated",
+        "repo": "nixpkgs",
+        "type": "github"
+      }
+    },
     "nixpkgs_2": {
       "locked": {
         "lastModified": 1765472234,
@@ -832,6 +848,7 @@
         "nixpkgs": "nixpkgs_2",
         "nixpkgs-25_11": "nixpkgs-25_11",
         "nixpkgs-master": "nixpkgs-master",
+        "nixpkgs-wip-consolidated": "nixpkgs-wip-consolidated",
         "pre-commit-hooks": "pre-commit-hooks",
         "system-manager": "system-manager"
       }
flake.nix
@@ -307,6 +307,12 @@
       ref = "nixos-25.11";
     };
     nixpkgs-master.url = "github:nixos/nixpkgs/master";
+    nixpkgs-wip-consolidated = {
+      type = "github";
+      owner = "vdemeester";
+      repo = "nixpkgs";
+      ref = "wip-consolidated";
+    };
     pre-commit-hooks.url = "github:cachix/git-hooks.nix";
     pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
     pre-commit-hooks.inputs.flake-compat.follows = "flake-compat";