treewide: make nixpkgs flake inputs target hydra tarballs

This commit is contained in:
Malix - Alix Brunet 2026-06-01 12:04:57 +02:00
parent 571b99c6aa
commit 43bd35ee23
No known key found for this signature in database
8 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,7 @@ Configuration for the ScreenPad is unable to be provided here at this time, due
inputs = { inputs = {
nixpkgs = { nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable"; url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
}; };
screenpad-driver={ screenpad-driver={

View file

@ -10,7 +10,7 @@ To create an initial SD card image for installation:
# flake.nix # flake.nix
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
nixos-hardware = { nixos-hardware = {
url = "github:NixOS/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -83,7 +83,7 @@ flake:
# flake.nix # flake.nix
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
nixos-hardware = { nixos-hardware = {
url = "github:NixOS/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -5,7 +5,7 @@ Create and customize a `flake.nix` file:
```nix ```nix
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
nixos-hardware = { nixos-hardware = {
url = "github:NixOS/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -5,7 +5,7 @@
Create and configure the `flake.nix` file: Create and configure the `flake.nix` file:
``` nix ``` nix
{ {
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
inputs.nixos-hardware = { inputs.nixos-hardware = {
url = "github:NixOS/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -4,7 +4,7 @@ Create and configure the `flake.nix` file:
``` nix ``` nix
{ {
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
inputs.nixos-hardware = { inputs.nixos-hardware = {
url = "github:NixOS/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -41,7 +41,7 @@ Below is an annoated flake example to create the initial boot image.
disko.inputs.nixpkgs.follows = "nixpkgs"; disko.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware"; nixos-hardware.url = "github:NixOS/nixos-hardware";
nixos-hardware.inputs.nixpkgs.follows = "nixpkgs"; 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"; nixpkgs-unfree.url = "github:numtide/nixpkgs-unfree/nixos-unstable";
}; };

View file

@ -3,9 +3,9 @@
Create and configure the `flake.nix` file: Create and configure the `flake.nix` file:
``` nix ``` nix
{ {
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
inputs.nixos-hardware = { inputs.nixos-hardware = {
url = "github:nixos/nixos-hardware"; url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };

View file

@ -2,8 +2,8 @@
description = "Private dev inputs for nixos-hardware"; description = "Private dev inputs for nixos-hardware";
inputs = { inputs = {
nixos-unstable-small.url = "github:NixOS/nixpkgs/nixos-unstable-small"; nixos-unstable-small.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz";
nixos-stable.url = "github:NixOS/nixpkgs/nixos-25.11"; nixos-stable.url = "https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz";
treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixos-unstable-small"; treefmt-nix.inputs.nixpkgs.follows = "nixos-unstable-small";
}; };