8 lines
169 B
Nix
8 lines
169 B
Nix
{ lib, ... }:
|
|
{
|
|
options.module.amd.cpu = {
|
|
enable = lib.mkEnableOption "the AMD Cpu support.";
|
|
powersave = lib.mkEnableOption "the AMD Cpu powersave.";
|
|
};
|
|
}
|