nix/option/AmdCpu.nix

8 lines
169 B
Nix
Raw Normal View History

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