blob: 2390b4bbcf911e28a58ace335675d3ef9ee667df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
inputs,
lib,
pkgs,
...
}:
{
nix = {
package = lib.mkForce pkgs.nixVersions.git;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
channel.enable = false;
};
}
|