nix: automatically pin nixpkgs to flake input
1 file changed, 11 insertions(+), 0 deletions(-)
changed files
A user/settings/pin.nix
@@ -0,0 +1,11 @@ +{ attrs, ... }: +let + inherit (attrs) nixpkgs; +in +{ + nix = { + registry = { + nixpkgs.flake = nixpkgs; + }; + }; +}