lenovo/thinkpad/x260: use services.tlp.settings

With switching from NixOS 20.03 to 20.09, the services.tlp.extraConfig
option became deprecated and was replaced by services.tlp.settings.

The ThinkPad X260 is only device within nixos-hardware which makes use
of this configuration.
This commit is contained in:
Alvar Penning 2020-10-31 15:59:40 +01:00
parent 46a68df837
commit de6811f14d
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
];
# https://wiki.archlinux.org/index.php/TLP#Btrfs
services.tlp.extraConfig = ''
SATA_LINKPWR_ON_BAT=med_power_with_dipm
'';
services.tlp.settings = {
SATA_LINKPWR_ON_BAT = "med_power_with_dipm";
};
}