From b432b209c317d138460ac6b07642e03e3e8dbca3 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sat, 4 Nov 2023 10:23:36 +0100 Subject: [PATCH] nixy/kernel: temporary fix for console issue --- nixy/configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nixy/configuration.nix b/nixy/configuration.nix index c4c87ec..9c9efca 100644 --- a/nixy/configuration.nix +++ b/nixy/configuration.nix @@ -47,6 +47,19 @@ readOnlyNixStore = true; supportedFilesystems = ["btrfs"]; tmp.useTmpfs = true; + + kernelPatches = let + inherit (lib.kernel) yes; + in [ + { + name = "264832"; + patch = null; + extraStructuredConfig = { + FRAMEBUFFER_CONSOLE_DETECT_PRIMARY = yes; + DRM_FBDEV_EMULATION = yes; + }; + } + ]; }; security = {