framework: Add Framework Desktop

Signed-off-by: Daniel Schaefer <dhs@frame.work>
This commit is contained in:
Daniel Schaefer
2025-05-19 22:51:57 +08:00
parent 9368056b73
commit 9157552825
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# [Framework Desktop](https://frame.work/desktop)
## Updating Firmware
First put enable `fwupd`
```nix
services.fwupd.enable = true;
```
Then run
```sh
$ fwupdmgr update
```
- [Latest Update](https://fwupd.org/lvfs/devices/work.frame.Desktop.RyzenAIMax300.BIOS.firmware)

View File

@@ -0,0 +1,10 @@
{ config, lib, ... }:
{
imports = [
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
../../../common/pc/ssd
../../framework-tool.nix
];
}