mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 12:06:09 +01:00
microsoft/surface: switch back to using sha256 instead of hash due to connection breaking
This commit is contained in:
parent
bb295c09d9
commit
dab2104c1f
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue