2025-02-25 02:14:16 -05:00
|
|
|
{ config, lib, pkgs, unstable, ... }:
|
2025-01-11 14:07:19 -05:00
|
|
|
{
|
2025-01-22 13:18:35 -05:00
|
|
|
nix = {
|
2025-02-18 20:44:04 -05:00
|
|
|
package = lib.mkForce pkgs.nix;
|
2025-01-22 13:18:35 -05:00
|
|
|
settings.experimental-features = [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
2025-02-25 02:14:16 -05:00
|
|
|
registry.unstable.flake = unstable;
|
|
|
|
};
|
|
|
|
|
|
|
|
_module.args.pkgsUnstable = import unstable {
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) system;
|
|
|
|
inherit (config.nixpkgs) config;
|
2025-01-22 13:18:35 -05:00
|
|
|
};
|
2025-01-11 14:07:19 -05:00
|
|
|
}
|