feat(affogato): use upstream nixos-hardware model, enable power-profiles-daemon, add repo-local pkgs overlay

This commit is contained in:
2025-03-04 19:23:28 +01:00
parent fef153c9d8
commit b874613227
6 changed files with 36 additions and 12 deletions

5
pkgs/default.nix Normal file
View File

@ -0,0 +1,5 @@
final: prev: {
cpupower = prev.cpupower.overrideAttrs (oldAttrs: {
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ prev.which ];
});
}