1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-28 17:17:22 +02:00
nixos-hardware/framework/13-inch/common/amd.nix

12 lines
322 B
Nix
Raw Normal View History

2023-11-10 22:10:31 +01:00
{ lib, ... }: {
imports = [
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
];
# AMD has better battery life with PPD over TLP:
# https://community.frame.work/t/responded-amd-7040-sleep-states/38101/13
services.power-profiles-daemon.enable = lib.mkDefault true;
}