nix/option/AmdCpu.nix

10 lines
168 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
{
lib,
...
}: {
options.module.amd.cpu = {
enable = lib.mkEnableOption "the AMD Cpu support.";
powersave = lib.mkEnableOption "the AMD Cpu powersave.";
};
}