flake: pin flake nixpkgs in system registry

This commit is contained in:
Antoine Martin 2023-12-11 16:41:18 +01:00
parent b904971b04
commit c2c4035d98

View file

@ -60,9 +60,14 @@
home-manager.verbose = true;
};
nix-path = {
nix.nixPath = [
"nixpkgs=${inputs.nixpkgs}"
];
nix = {
nixPath = [
"nixpkgs=${inputs.nixpkgs}"
];
registry = {
nixpkgs.flake = inputs.nixpkgs;
};
};
};
};