Skip to content

Commit 9157552

Browse files
committed
framework: Add Framework Desktop
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 9368056 commit 9157552

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133
framework-13-7040-amd = import ./framework/13-inch/7040-amd;
134134
framework-amd-ai-300-series = import ./framework/13-inch/amd-ai-300-series;
135135
framework-16-7040-amd = import ./framework/16-inch/7040-amd;
136+
framework-desktop-amd-ai-max-300-series = import ./framework/desktop/amd-ai-max-300-series;
136137
friendlyarm-nanopc-t4 = import ./friendlyarm/nanopc-t4;
137138
friendlyarm-nanopi-r5s = import ./friendlyarm/nanopi-r5s;
138139
focus-m2-gen1 = import ./focus/m2/gen1;
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# [Framework Desktop](https://frame.work/desktop)
2+
3+
## Updating Firmware
4+
5+
First put enable `fwupd`
6+
7+
```nix
8+
services.fwupd.enable = true;
9+
```
10+
11+
Then run
12+
13+
```sh
14+
$ fwupdmgr update
15+
```
16+
17+
- [Latest Update](https://fwupd.org/lvfs/devices/work.frame.Desktop.RyzenAIMax300.BIOS.firmware)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ config, lib, ... }:
2+
{
3+
imports = [
4+
../../../common/cpu/amd
5+
../../../common/cpu/amd/pstate.nix
6+
../../../common/gpu/amd
7+
../../../common/pc/ssd
8+
../../framework-tool.nix
9+
];
10+
}

0 commit comments

Comments
 (0)