nix/option/IntelCpu.nix

8 lines
180 B
Nix

{ lib, ... }:
{
options.module.intel.cpu = {
enable = lib.mkEnableOption "the support for Intel CPUs.";
powersave = lib.mkEnableOption "the Intel CPU powersave.";
};
}