framework: Add Intel Core Ultra Series 1

Signed-off-by: Daniel Schaefer <dhs@frame.work>
This commit is contained in:
Daniel Schaefer
2024-06-18 09:40:37 +08:00
committed by mergify[bot]
parent f6581f1c3b
commit ccc638b24f
3 changed files with 28 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,12 @@
{ lib, pkgs, ... }:
{
imports = [
../common
../common/intel.nix
];
# 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") (lib.mkDefault pkgs.linuxPackages_latest);
}