mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 11:36:10 +01:00
framework: Enable fwupd by default
Users should keep their firmware (not just BIOS) up to date. Framework 13 Intel 11-13th Gen have some components that can't be updated with fwupd, so some BIOS versions are better to be installed through the EFI shell or Windows. Signed-off-by: Daniel Schaefer <dhs@frame.work>
This commit is contained in:
parent
3dac8a8725
commit
3a4da5f8c1
11 changed files with 48 additions and 30 deletions
|
|
@ -2,14 +2,13 @@
|
|||
|
||||
## Updating Firmware
|
||||
|
||||
First put enable `fwupd`
|
||||
Everything is updateable through fwupd, so it's enabled by default.
|
||||
|
||||
```nix
|
||||
services.fwupd.enable = true;
|
||||
```
|
||||
|
||||
Then run
|
||||
To get the latest firmware, run:
|
||||
|
||||
```sh
|
||||
$ fwupdmgr update
|
||||
$ fwupdmgr refresh
|
||||
$ fwupdmgr update
|
||||
```
|
||||
|
||||
- [Latest Update](https://fwupd.org/lvfs/devices/work.frame.Laptop.MTL.BIOS.firmware)
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@
|
|||
../common/intel.nix
|
||||
];
|
||||
|
||||
# Everything is updateable through fwupd
|
||||
services.fwupd.enable = true;
|
||||
|
||||
# Need at least 6.9 to make suspend properly
|
||||
# Specifically this patch: https://github.com/torvalds/linux/commit/073237281a508ac80ec025872ad7de50cfb5a28a
|
||||
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.9") (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue