Add Framework AMD AI 300 Series

This commit is contained in:
Connor Prussin
2025-04-25 07:01:53 -07:00
committed by mergify[bot]
parent 232c204afb
commit c06d50adeb
4 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# [Framework Laptop 13](https://frame.work/)
## Updating Firmware
First put enable `fwupd`
```nix
services.fwupd.enable = true;
```
Then run
```sh
$ fwupdmgr update
```

View File

@@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
imports = [
../common
../common/amd.nix
];
config.hardware.framework.laptop13.audioEnhancement.rawDeviceName = lib.mkDefault "alsa_output.pci-0000_c1_00.6.analog-stereo";
}