11 lines
208 B
Nix
11 lines
208 B
Nix
{ unstable, lib, pkgs, ... }:
|
|
{
|
|
nix = {
|
|
package = lib.mkForce pkgs.nix;
|
|
registry.unstable.flake = unstable;
|
|
settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
};
|
|
}
|