[NixOS] Use custom nix with same version as what is in nixpkgs

This commit is contained in:
Ivan Malison 2023-07-27 21:37:11 -06:00
parent 2d487207d1
commit 654146f803
2 changed files with 5 additions and 2 deletions

View File

@ -60,8 +60,7 @@
}; };
nix = { nix = {
url = github:IvanMalison/nix; url = github:IvanMalison/nix/my2.15.1;
inputs.nixpkgs.follows = "nixpkgs";
}; };
flake-utils = { flake-utils = {

View File

@ -5,6 +5,10 @@
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
registry.nixpkgs.flake = inputs.nixpkgs; registry.nixpkgs.flake = inputs.nixpkgs;
settings = {
keep-outputs = true;
keep-derivations = true;
};
}; };
nixpkgs.overlays = with inputs; [ nixpkgs.overlays = with inputs; [