1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-19 12:57:22 +02:00

Fix Lenovo Thinkpad T14s not powering off

This commit is contained in:
Tobias Kündig 2024-07-03 09:24:27 +02:00 committed by mergify[bot]
parent da0aa7b533
commit 00f9c4bb06

View file

@ -0,0 +1,9 @@
{ lib, pkgs, ... }:
{
imports = [
../.
];
# Fix laptop not properly powering off during shutdown.
boot.kernelParams = [ "apm=power_off" ];
}