global/security: enable restributable firmware globally
Also enable AMD microcode updates based on redistributable firmware being enabled
This commit is contained in:
parent
dcf22f2da3
commit
414f8b6030
2 changed files with 5 additions and 3 deletions
|
@ -11,9 +11,6 @@ in
|
|||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
||||
fileSystems =
|
||||
let
|
||||
main = uuid "13f97ece-823e-4785-b06e-6c284105d379";
|
||||
|
|
|
@ -14,6 +14,11 @@ with lib;
|
|||
pam.enableSSHAgentAuth = true;
|
||||
};
|
||||
|
||||
hardware = {
|
||||
enableRedistributableFirmware = mkDefault true;
|
||||
cpu.amd.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
|
||||
};
|
||||
|
||||
boot = {
|
||||
# Make tmp volatile, using tmpfs is speedy on SSD systems
|
||||
# Redundant on opt-in state systems
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue