1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-19 21:07:23 +02:00

xps13-9380: enable fwupd

This commit is contained in:
Daniel Șerbănescu 2024-08-23 18:17:51 +02:00 committed by mergify[bot]
parent 59bcb4c4e1
commit d3600fc296
2 changed files with 4 additions and 7 deletions

View file

@ -3,13 +3,7 @@
== Firmware upgrades ==
Note that this device is supported by [https://fwupd.org/ fwupd].
To perform firmware upgrades just activate the service
<code>
services.fwupd.enable = true;
</code>
Then use <code>fwupdmgr</code> to perform updates.
To perform firmware upgrades use <code>fwupdmgr</code> to perform updates.
== Battery drain when sleeping ==

View file

@ -11,6 +11,9 @@
# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];
# Allows for updating firmware via `fwupdmgr`.
services.fwupd.enable = true;
# This will save you money and possibly your life!
services.thermald.enable = true;
}