Skip to content

Commit c06d50a

Browse files
cprussinmergify[bot]
authored andcommitted
Add Framework AMD AI 300 Series
1 parent 232c204 commit c06d50a

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ See code for all available configurations.
180180
| [Framework 13th Gen Intel Core](framework/13-inch/13th-gen-intel) | `<nixos-hardware/framework/13-inch/13th-gen-intel>` |
181181
| [Framework Intel Core Ultra Series 1](framework/13-inch/intel-core-ultra-series1) | `<nixos-hardware/framework/13-inch/intel-core-ultra-series1>` |
182182
| [Framework 13 AMD Ryzen 7040 Series](framework/13-inch/7040-amd) | `<nixos-hardware/framework/13-inch/7040-amd>` |
183+
| [Framework 13 AMD AI 300 Series](framework/13-inch/amd-ai-300-series) | `<nixos-hardware/framework/13-inch/amd-ai-300-series>` |
183184
| [Framework 16 AMD Ryzen 7040 Series](framework/16-inch/7040-amd) | `<nixos-hardware/framework/16-inch/7040-amd>` |
184185
| [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `<nixos-hardware/friendlyarm/nanopc-t4>` |
185186
| [FriendlyARM NanoPi R5s](friendlyarm/nanopi-r5s) | `<nixos-hardware/friendlyarm/nanopi-r5s>` |

flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
framework-13th-gen-intel = import ./framework/13-inch/13th-gen-intel;
123123
framework-intel-core-ultra-series1 = import ./framework/13-inch/intel-core-ultra-series1;
124124
framework-13-7040-amd = import ./framework/13-inch/7040-amd;
125+
framework-amd-ai-300-series = import ./framework/13-inch/amd-ai-300-series;
125126
framework-16-7040-amd = import ./framework/16-inch/7040-amd;
126127
friendlyarm-nanopc-t4 = import ./friendlyarm/nanopc-t4;
127128
friendlyarm-nanopi-r5s = import ./friendlyarm/nanopi-r5s;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# [Framework Laptop 13](https://frame.work/)
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+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ config, lib, pkgs, ... }:
2+
3+
{
4+
imports = [
5+
../common
6+
../common/amd.nix
7+
];
8+
config.hardware.framework.laptop13.audioEnhancement.rawDeviceName = lib.mkDefault "alsa_output.pci-0000_c1_00.6.analog-stereo";
9+
}

0 commit comments

Comments
 (0)