nixos-hardware/dell/xps/13-9333/default.nix
2023-08-04 21:08:48 +01:00

16 lines
406 B
Nix

{ lib, pkgs, ... }: {
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/ssd
];
# Required to allow the touchpad to work
boot.kernelParams = [ "i8042.nopnp=1" ];
boot.blacklistedKernelModules = [ "i2c_hid" "i2c_hid_acpi" ];
boot.kernelModules = [ "synaptics_i2c"];
# Allows for updating firmware via `fwupdmgr`.
services.fwupd.enable = true;
}