nix-conf/system/dev/dn-server/services/hideTTY.nix
2026-01-10 12:46:40 +08:00

13 lines
255 B
Nix
Executable file

{ ... }:
{
systemd.services.hideTTY = {
description = "Auto turn off monitor ";
wantedBy = [ "multi-user.target" ];
script = ''
echo 1 > /sys/class/graphics/fb0/blank
'';
serviceConfig = {
Type = "oneshot";
};
};
}