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