22 lines
803 B
Diff
22 lines
803 B
Diff
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"
|
|
];
|
|
};
|
|
|