nixos-hardware/hp/notebook/14-df0023/default.nix
Jörg Thalheim 56e370b342 deprecate commons/hdd module
We havent't had anything meaningful configuration in this module for a while.
So let's deprecate it.
2024-06-20 12:09:44 +02:00

16 lines
281 B
Nix

{ config, lib, ... }:
with lib;
{
imports = [
../../../common/cpu/intel
../../../common/cpu/intel/sandy-bridge
../../../common/pc
../../../common/pc/laptop
../../../common/pc/laptop/hdd
];
config = {
services.thermald.enable = mkDefault true;
};
}