1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 11:26:21 +00:00
karbur/modules(WIP)/host/hardware/cpu/default.nix

17 lines
358 B
Nix
Raw Permalink Normal View History

2024-10-26 09:23:16 +00:00
{ lib, config, ... }:
with lib;
let cfg = config.module.hardware.cpu;
in {
options = { module.hardware.cpu.enable = mkEnableOption ""; };
config = mkIf cfg.enable {
hardware.cpu.amd = { # OPTIMIZATION FOR CPU
updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
ryzen-smu.enable = true;
};
};
}