Extract _actually_ common code out of microsoft/surface/default.nix

This commit is contained in:
mexisme
2023-01-10 15:43:25 +13:00
parent 7ff6c2fd67
commit 391211b351
2 changed files with 17 additions and 14 deletions

View File

@@ -1,7 +1,22 @@
{ ... }:
{ lib, ... }:
{
let
inherit (lib) mkDefault;
in {
imports = [
./kernel
];
microsoft-surface.kernelVersion = mkDefault "6.0.11";
# Seems to be required to properly enable S0ix "Modern Standby":
boot.kernelParams = mkDefault [ "mem_sleep_default=deep" ];
# NOTE: Check the README before enabling TLP:
services.tlp.enable = mkDefault false;
# i.e. needed for wifi firmware, see https://github.com/NixOS/nixos-hardware/issues/364
hardware.enableRedistributableFirmware = mkDefault true;
hardware.sensor.iio.enable = mkDefault true;
}