mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 00:37:14 +08:00
The previous implementation was sourcing the kernel through `pkgs.linux`, which is only representative of the final system if `boot.kernelPackages` is left as the default value of `pkgs.linuxPackages`. You can of course change this to other package sets, such as `pkgs.linuxPackages_latest`. Instead, we now reference the kernel through `config.boot.kernelPackages.kernel`.
104 lines
2.4 KiB
Nix
104 lines
2.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (config.boot.kernelPackages) kernel;
|
|
|
|
dtbName = "sc8280xp-lenovo-thinkpad-x13s.dtb";
|
|
dtb = "${kernel}/dtbs/qcom/${dtbName}";
|
|
# Version the dtb based on the kernel
|
|
dtbEfiPath = "dtbs/x13s-${kernel.version}.dtb";
|
|
cfg = {
|
|
wifiMac = "e4:65:38:52:22:a9";
|
|
bluetoothMac = "E4:25:18:22:44:AA";
|
|
};
|
|
inherit (lib) mkDefault;
|
|
in
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/pc/laptop
|
|
];
|
|
|
|
boot = {
|
|
loader.systemd-boot.extraFiles = {
|
|
"${dtbEfiPath}" = dtb;
|
|
};
|
|
|
|
kernelParams = mkDefault [
|
|
# needed to boot
|
|
"dtb=${dtbEfiPath}"
|
|
|
|
# jhovold recommended
|
|
"clk_ignore_unused"
|
|
"pd_ignore_unused"
|
|
"arm64.nopauth"
|
|
];
|
|
|
|
kernelModules = mkDefault [
|
|
"nvme"
|
|
"phy-qcom-qmp-pcie"
|
|
"pcie-qcom"
|
|
|
|
"i2c-core"
|
|
"i2c-hid"
|
|
"i2c-hid-of"
|
|
"i2c-qcom-geni"
|
|
|
|
"leds_qcom_lpg"
|
|
"pwm_bl"
|
|
"qrtr"
|
|
"pmic_glink_altmode"
|
|
"gpio_sbu_mux"
|
|
"phy-qcom-qmp-combo"
|
|
"gpucc_sc8280xp"
|
|
"dispcc_sc8280xp"
|
|
"phy_qcom_edp"
|
|
"panel-edp"
|
|
"msm"
|
|
];
|
|
};
|
|
|
|
hardware.enableRedistributableFirmware = mkDefault true;
|
|
|
|
systemd.services.bluetooth-x13s-mac = lib.mkIf (cfg.bluetoothMac != null) {
|
|
wantedBy = [ "multi-user.target" ];
|
|
before = [ "bluetooth.service" ];
|
|
requiredBy = [ "bluetooth.service" ];
|
|
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
RemainAfterExit = true;
|
|
ExecStart = "${pkgs.util-linux}/bin/script -q -c '${pkgs.bluez}/bin/btmgmt --index 0 public-addr ${cfg.bluetoothMac}'";
|
|
};
|
|
};
|
|
|
|
# https://github.com/jhovold/linux/wiki/X13s#modem
|
|
networking.networkmanager.fccUnlockScripts = [
|
|
|
|
{
|
|
id = "105b:e0c3";
|
|
path = "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/105b";
|
|
}
|
|
];
|
|
|
|
# https://github.com/jhovold/linux/wiki/X13s#camera
|
|
services.udev.extraRules = lib.strings.concatLines (
|
|
[
|
|
''
|
|
ACTION=="add", SUBSYSTEM=="dma_heap", KERNEL=="linux,cma", GROUP="video", MODE="0660"
|
|
ACTION=="add", SUBSYSTEM=="dma_heap", KERNEL=="system", GROUP="video", MODE="0660"
|
|
''
|
|
]
|
|
++ (
|
|
if cfg.wifiMac != null then
|
|
[
|
|
''
|
|
ACTION=="add", SUBSYSTEM=="net", KERNELS=="0006:01:00.0", RUN+="${pkgs.iproute2}/bin/ip link set dev $name address ${cfg.wifiMac}"
|
|
''
|
|
]
|
|
else
|
|
[ ]
|
|
)
|
|
);
|
|
}
|