diff options
Diffstat (limited to '')
-rw-r--r-- | modules/hardware/amd/default.nix | 13 | ||||
-rw-r--r-- | modules/hardware/default.nix | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/modules/hardware/amd/default.nix b/modules/hardware/amd/default.nix new file mode 100644 index 0000000..05362db --- /dev/null +++ b/modules/hardware/amd/default.nix @@ -0,0 +1,13 @@ +{ config, lib, ... }: +let cfg = config.my.hardware.amd; +in { + options.my.hardware.amd = with lib; { + enable = mkEnableOption "AMD related configuration"; + }; + + config = lib.mkIf cfg.enable { + # Enable microcode update + hardware.cpu.amd.updateMicrocode = true; + boot.kernelModules = [ "kvm-amd" ]; + }; +} diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index 62208c1..843c1f5 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -1,5 +1,5 @@ { ... }: { - imports = [ ./intel ./ssd ./sound ./networking ]; + imports = [ ./amd ./intel ./ssd ./sound ./networking ]; } |