From 022812a5b7239f69b3db625af9fea9b36babc977 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 19 Apr 2026 14:11:30 -0400 Subject: [PATCH] removed power --- system/machines/tv/modules/kiosk/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/system/machines/tv/modules/kiosk/default.nix b/system/machines/tv/modules/kiosk/default.nix index 2584265..c2837f0 100644 --- a/system/machines/tv/modules/kiosk/default.nix +++ b/system/machines/tv/modules/kiosk/default.nix @@ -73,6 +73,12 @@ in # Firefox runs on Wayland cleanly only with this env var. environment.sessionVariables.MOZ_ENABLE_WAYLAND = "1"; + # Pi 4 can't wake from a powered-off state via the remote (no standby + # circuit), so shutting down via the remote's power button strands the + # system until someone reaches the power cable. Ignore the key entirely + # and rely on the TV's own power to hide the display. + services.logind.settings.Login.HandlePowerKey = "ignore"; + # PipeWire for audio out over HDMI / 3.5mm services.pipewire = { enable = true;