Move common modules into folder

This commit is contained in:
Kevin J Hoerr
2023-11-10 16:10:31 -05:00
parent 5f6b875273
commit de0c9310d3
6 changed files with 25 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
{ 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;
}