Adding Dell XPS 13 9333

This commit is contained in:
Matthieu Dubuget 2023-08-03 21:50:38 +02:00 committed by Jörg Thalheim
parent 24f9162b26
commit 6dcf1381ec
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,9 @@
= Dell XPS 13 9300 =
== SSD ==
In the <code>default.nix</code> file, I imported
<code>../../../common/pc/ssd</code> because my laptop has currently an SSD, but
I'm not sure if it was the case when I bought it or if I installed it later.
The main updates allow the touchpad to work.

View file

@ -0,0 +1,15 @@
{ 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;
}