microsoft/surface: switch back to using sha256 instead of hash due to connection breaking

This commit is contained in:
Andre 2025-04-12 10:37:47 -04:00
parent bb295c09d9
commit dab2104c1f

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
inherit (lib) fetchFromGitHub mkDefault mkOption types versions; inherit (lib) mkDefault mkOption types versions;
# Set the full kernel version and hashes # Set the full kernel version and hashes
version = version =
@ -48,7 +48,7 @@ let
}; };
kernelPackages = linuxPackage { kernelPackages = linuxPackage {
inherit version kernelPatches; inherit version kernelPatches;
hash = srcHash; sha256 = srcHash;
ignoreConfigErrors=true; ignoreConfigErrors=true;
}; };