From 8e0ec5fb3687a7824887e4ae3231d887dab0ef9b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 30 Mar 2026 12:21:31 +0200 Subject: [PATCH] Update nixpkgs URL for flake migration tutorial --- docs/src/content/docs/tutorials/migrate-flake-parts.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/tutorials/migrate-flake-parts.mdx b/docs/src/content/docs/tutorials/migrate-flake-parts.mdx index 6038ff3..f61d298 100644 --- a/docs/src/content/docs/tutorials/migrate-flake-parts.mdx +++ b/docs/src/content/docs/tutorials/migrate-flake-parts.mdx @@ -12,7 +12,7 @@ Suppose you have a flake-parts enabled flake that looks like: # flake.nix { inputs = { # (A) So much inputs - nixpkgs.url = "github:nixos/nixpkgs/unstable"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; flake-parts.url = "github:hercules-ci/flake-parts"; foo.url = "github:coolguy/foo"; bar.url = "github:coolguy/bar"; @@ -98,7 +98,7 @@ Edit `./modules/inputs.nix` module to add in-flake flake-file. imports = [ # enable inside-flake and say goodbye to bootstrap -+ inputs.flake-file.flakeModule ++ inputs.flake-file.flakeModules.default # start splitting from inputs.nix into other files ]; @@ -117,4 +117,4 @@ Commands for your daily life: nix run .#write-flake # whenever you need to regen flake.nix nix flake check # will make sure your flake.nix is up-to-date -``` \ No newline at end of file +```