From 43bd35ee2378bf4ab2eaef3a319ed888c1338855 Mon Sep 17 00:00:00 2001 From: Malix - Alix Brunet Date: Mon, 1 Jun 2026 12:04:57 +0200 Subject: [PATCH] treewide: make nixpkgs flake inputs target hydra tarballs --- asus/zenbook/ux535/README.md | 2 +- hardkernel/odroid-m1/README.md | 4 ++-- milkv/pioneer/README.md | 2 +- mnt/reform/rk3588/README.md | 2 +- pine64/star64/README.md | 2 +- radxa/README.md | 2 +- starfive/visionfive/v2/README.md | 4 ++-- tests/flake.nix | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/asus/zenbook/ux535/README.md b/asus/zenbook/ux535/README.md index ca24e939..06b2e4ac 100644 --- a/asus/zenbook/ux535/README.md +++ b/asus/zenbook/ux535/README.md @@ -12,7 +12,7 @@ Configuration for the ScreenPad is unable to be provided here at this time, due inputs = { nixpkgs = { - url = "github:NixOS/nixpkgs/nixos-unstable"; + url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; }; screenpad-driver={ diff --git a/hardkernel/odroid-m1/README.md b/hardkernel/odroid-m1/README.md index 98985fc3..a0a38d1a 100644 --- a/hardkernel/odroid-m1/README.md +++ b/hardkernel/odroid-m1/README.md @@ -10,7 +10,7 @@ To create an initial SD card image for installation: # flake.nix { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; nixos-hardware = { url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; @@ -83,7 +83,7 @@ flake: # flake.nix { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; nixos-hardware = { url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/milkv/pioneer/README.md b/milkv/pioneer/README.md index bbec9706..58d8f1c8 100644 --- a/milkv/pioneer/README.md +++ b/milkv/pioneer/README.md @@ -5,7 +5,7 @@ Create and customize a `flake.nix` file: ```nix { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; nixos-hardware = { url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/mnt/reform/rk3588/README.md b/mnt/reform/rk3588/README.md index 2f72be20..125a077f 100644 --- a/mnt/reform/rk3588/README.md +++ b/mnt/reform/rk3588/README.md @@ -5,7 +5,7 @@ Create and configure the `flake.nix` file: ``` nix { - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; inputs.nixos-hardware = { url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/pine64/star64/README.md b/pine64/star64/README.md index 674b021a..75402d03 100644 --- a/pine64/star64/README.md +++ b/pine64/star64/README.md @@ -4,7 +4,7 @@ Create and configure the `flake.nix` file: ``` nix { - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; inputs.nixos-hardware = { url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/radxa/README.md b/radxa/README.md index 7749eb01..41503544 100644 --- a/radxa/README.md +++ b/radxa/README.md @@ -41,7 +41,7 @@ Below is an annoated flake example to create the initial boot image. disko.inputs.nixpkgs.follows = "nixpkgs"; nixos-hardware.url = "github:NixOS/nixos-hardware"; nixos-hardware.inputs.nixpkgs.follows = "nixpkgs"; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; nixpkgs-unfree.url = "github:numtide/nixpkgs-unfree/nixos-unstable"; }; diff --git a/starfive/visionfive/v2/README.md b/starfive/visionfive/v2/README.md index 12ed4f5a..98c0167e 100644 --- a/starfive/visionfive/v2/README.md +++ b/starfive/visionfive/v2/README.md @@ -3,9 +3,9 @@ Create and configure the `flake.nix` file: ``` nix { - inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; inputs.nixos-hardware = { - url = "github:nixos/nixos-hardware"; + url = "github:NixOS/nixos-hardware"; inputs.nixpkgs.follows = "nixpkgs"; }; diff --git a/tests/flake.nix b/tests/flake.nix index 1d192b96..6300a3ab 100644 --- a/tests/flake.nix +++ b/tests/flake.nix @@ -2,8 +2,8 @@ description = "Private dev inputs for nixos-hardware"; inputs = { - nixos-unstable-small.url = "github:NixOS/nixpkgs/nixos-unstable-small"; - nixos-stable.url = "github:NixOS/nixpkgs/nixos-25.11"; + nixos-unstable-small.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; + nixos-stable.url = "https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz"; treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.inputs.nixpkgs.follows = "nixos-unstable-small"; };