From 387ba548766757c7d11e3ec95e6d4edcae6ade12 Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Tue, 22 Oct 2024 14:25:18 +0700 Subject: [PATCH] hyprland: add console=tty1 to kernel params --- system/modules/hyprland.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/modules/hyprland.nix b/system/modules/hyprland.nix index 72c1f48..ade5bc4 100644 --- a/system/modules/hyprland.nix +++ b/system/modules/hyprland.nix @@ -93,6 +93,8 @@ in }; }; + boot.kernelParams = [ "console=tty1" ]; + services.displayManager.sddm = lib.mkIf (cfg.displayManager == "sddm") { enable = true; wayland.enable = true;