Compare commits

...

14 Commits

Author SHA1 Message Date
nixpkgs-ci[bot]
cb390018e8 Merge master into staging-nixos 2026-09-13 18:49:10 +00:00
nixpkgs-ci[bot]
87ab9d0e10 Merge master into staging-nixos 2026-09-13 18:11:05 +00:00
Masum Reza
7875f01411 nixos/installer/tools: use channel tarball by default instead of GitHub (#560768) 2026-09-13 16:07:35 +00:00
Masum Reza
55a107e2d2 bcachefs-tools: 1.39.5 -> 1.39.6 (#562588) 2026-09-13 15:48:13 +00:00
nixpkgs-ci[bot]
7c2e2887ae Merge master into staging-nixos 2026-09-13 12:13:29 +00:00
nixpkgs-ci[bot]
572232e007 Merge master into staging-nixos 2026-09-13 06:19:06 +00:00
nixpkgs-ci[bot]
b3c643a226 Merge master into staging-nixos 2026-09-13 00:28:10 +00:00
nixpkgs-ci[bot]
1952823b39 Merge master into staging-nixos 2026-09-12 18:10:46 +00:00
qubitnano
e298b1286e bcachefs-tools: 1.39.5 -> 1.39.6
https://evilpiepirate.org/git/bcachefs-tools.git/tree/Changelog.mdwn
2026-09-12 09:15:19 -04:00
nixpkgs-ci[bot]
b45f8f28d8 Merge master into staging-nixos 2026-09-12 12:12:45 +00:00
nixpkgs-ci[bot]
2e8f35788b Merge master into staging-nixos 2026-09-12 06:14:49 +00:00
nixpkgs-ci[bot]
05f0171edc Merge master into staging-nixos 2026-09-12 00:24:33 +00:00
nixpkgs-ci[bot]
08c108de01 Merge master into staging-nixos 2026-09-11 18:11:15 +00:00
Grayson Tinker
12287d7ab5 nixos/installer/tools: use channel tarball by default instead of GitHub
The project-hosted channel tarballs have several benefits, including
better compression, non-reliance on GitHub, and an included command-not-found
database helpful for new users. Switch to the better default.
2026-09-06 23:12:53 -06:00
2 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@ let
# If you prefer a stable release instead, you can change the word unstable to the latest number shown here: https://nixos.org/download
# i.e. nixos-24.11
# Use `nix flake update` to update the flake to the latest revision of the chosen release channel.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.zst";
};
outputs = inputs\@{ self, nixpkgs, ... }: {
# NOTE: '${options.networking.hostName.default}' is the default hostname

View File

@@ -32,18 +32,18 @@
stdenv.mkDerivation (finalAttrs: {
pname = "bcachefs-tools";
version = "1.39.5";
version = "1.39.6";
src = fetchFromGitHub {
owner = "koverstreet";
repo = "bcachefs-tools";
tag = "v${finalAttrs.version}";
hash = "sha256-k9JW6GMXFwphkYGcYMwA59uafNj0EV96wTnbzeuVM1w=";
hash = "sha256-cBYn/g6eLT5rTumo4Y24rWSHS2Sc7gFthPuCg1AQ22k=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) src;
hash = "sha256-hbh4+vpZtVpda2yVZK+fkdPXWd5+GYLbWYPfJsYtPfM=";
hash = "sha256-djiIwZie9HjQ/+bCEGniMFkJA66oI0n+9y9Iax4GHOM=";
};
postPatch = ''