3p/nixpkgs: add pr142117
This commit is contained in:
parent
0e3c5ce26a
commit
d8fbac99a4
2 changed files with 23 additions and 0 deletions
22
third_party/nixpkgs/patches/pr142117-fix-hyperv.patch
vendored
Normal file
22
third_party/nixpkgs/patches/pr142117-fix-hyperv.patch
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
From d6e1fb43c4e61e7f3df7c72d167758d48aae4647 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Sam Hug <s@m-h.ug>
|
||||||
|
Date: Mon, 18 Oct 2021 11:22:53 -0700
|
||||||
|
Subject: [PATCH] nixos/hyperv: fix evaluation of kernelParams
|
||||||
|
|
||||||
|
---
|
||||||
|
nixos/modules/virtualisation/hyperv-guest.nix | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/nixos/modules/virtualisation/hyperv-guest.nix b/nixos/modules/virtualisation/hyperv-guest.nix
|
||||||
|
index b3bcfff19807..fb6502644b80 100644
|
||||||
|
--- a/nixos/modules/virtualisation/hyperv-guest.nix
|
||||||
|
+++ b/nixos/modules/virtualisation/hyperv-guest.nix
|
||||||
|
@@ -34,7 +34,7 @@ in {
|
||||||
|
initrd.availableKernelModules = [ "hyperv_keyboard" ];
|
||||||
|
|
||||||
|
kernelParams = [
|
||||||
|
- "video=hyperv_fb:${cfg.videoMode} elevator=noop"
|
||||||
|
+ "video=hyperv_fb:${cfg.videoMode}" "elevator=noop"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
1
third_party/nixpkgs/patches/series
vendored
1
third_party/nixpkgs/patches/series
vendored
|
@ -1,2 +1,3 @@
|
||||||
patch-cherrypy.patch
|
patch-cherrypy.patch
|
||||||
pomerium-fix.patch
|
pomerium-fix.patch
|
||||||
|
pr142117-fix-hyperv.patch
|
||||||
|
|
Loading…
Reference in a new issue