mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
108f27f71e
The note about BTRFS has been removed from the linked Arch wiki page in January 2021 with a comment: > Removing note about problems with Btrfs and ALPM, since issues have been fixed in the kernel (4.15 -> https://www.spinics.net/lists/linux-btrfs/msg101833.html)) See: https://wiki.archlinux.org/index.php?title=TLP&oldid=650059
12 lines
238 B
Nix
12 lines
238 B
Nix
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
# https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X260#Thinkpad_X260
|
|
"i915.enable_psr=0"
|
|
];
|
|
}
|