mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 11:36:10 +01:00
Adding Dell XPS 13 9333
This commit is contained in:
parent
24f9162b26
commit
6dcf1381ec
4 changed files with 26 additions and 0 deletions
9
dell/xps/13-9333/README.wiki
Normal file
9
dell/xps/13-9333/README.wiki
Normal 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.
|
||||
15
dell/xps/13-9333/default.nix
Normal file
15
dell/xps/13-9333/default.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue