flake.nix: update to nixos-25.11

And squashes eval warnings from accessing pkgs.hostPlatform.
This commit is contained in:
Martin Weinelt
2025-11-25 15:23:17 +01:00
committed by ahuston-0
parent 39b2c7c0da
commit 7123dd8981
3 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
{
description = "A Nix-based continuous build system";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05-small";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11-small";
inputs.nix = {
url = "github:NixOS/nix/2.32-maintenance";
@@ -59,7 +59,7 @@
manual = forEachSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
hydra = self.packages.${pkgs.hostPlatform.system}.hydra;
hydra = self.packages.${pkgs.stdenv.hostPlatform.system}.hydra;
in
pkgs.runCommand "hydra-manual-${hydra.version}" { }
''