nix/option/IntelCpu.nix

10 lines
179 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
{
lib,
...
}: {
options.module.intel.cpu = {
enable = lib.mkEnableOption "the support for Intel CPUs.";
powersave = lib.mkEnableOption "the Intel CPU powersave.";
};
}