mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-12-18 23:59:45 +01:00
11 lines
157 B
Nix
11 lines
157 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
boot.kernel.sysctl = {
|
|
"vm.laptop_mode" = lib.mkDefault 5;
|
|
};
|
|
|
|
services.tlp.enable = lib.mkDefault true;
|
|
}
|