Skip to content

Commit

Permalink
feat(media): enable serial console display
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Aug 18, 2024
1 parent d9f3e4a commit bc44249
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hosts/media/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ in {
boot.loader.systemd-boot.configurationLimit = 10;
boot.loader.efi.canTouchEfiVariables = true;

# Enable serial console display on serial=0.
# We use this because there's a bug when passing through Intel iGPU to a VM
# with a display.
# [drm:i915_gem_init_stolen [i915]] *ERROR* conflict detected with stolen region
boot.kernelParams = [ "console=ttyS0,115200n8" ];

# Set your time zone.
time.timeZone = "America/New_York";

Expand Down

0 comments on commit bc44249

Please sign in to comment.