From 115e4746bdb0024c14536d8185b285718918038a Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 10 Jan 2023 08:53:18 -0800 Subject: feat(hosts/tahoe): rotate the screen 90 degree The machine is connected to a rotated screen. --- hosts/tahoe/boot.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'hosts') diff --git a/hosts/tahoe/boot.nix b/hosts/tahoe/boot.nix index f013f34..9bc68f7 100644 --- a/hosts/tahoe/boot.nix +++ b/hosts/tahoe/boot.nix @@ -2,8 +2,12 @@ { boot = { - # get an IP address on boot, so we can unlock the root disk remotely - kernelParams = [ "ip=dhcp" ]; + kernelParams = [ + # get an IP address on boot, so we can unlock the root disk remotely + "ip=dhcp" + # rotate the screen 90 degree counter clockwise + "fbcon=rotate:1" + ]; initrd = { # driver for the NIC, required in order to get an IP address kernelModules = [ "r8169" ]; -- cgit 1.4.1