add microcode updates
Signed-off-by: Xe <me@christine.website>
This commit is contained in:
parent
dcd75e0a4c
commit
e688ff36ae
|
@ -1,5 +1,5 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
imports = [ ./users ];
|
imports = [ ./users ./microcode.nix ];
|
||||||
|
|
||||||
boot.cleanTmpDir = true;
|
boot.cleanTmpDir = true;
|
||||||
boot.kernelModules = [ "wireguard" ];
|
boot.kernelModules = [ "wireguard" ];
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ config, lib, ... }: {
|
||||||
|
options = {
|
||||||
|
within.microcode = {
|
||||||
|
enable = lib.mkEnableOption "Enables CPU Microcode updates";
|
||||||
|
vendor = lib.mkOption { type = lib.types.enum [ "intel" "amd" ]; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf config.within.microcode.enable {
|
||||||
|
hardware.cpu.intel.updateMicrocode = (config.cadey.cpu.vendor == "intel");
|
||||||
|
hardware.cpu.amd.updateMicrocode = (config.cadey.cpu.vendor == "amd");
|
||||||
|
};
|
||||||
|
}
|
|
@ -30,10 +30,10 @@
|
||||||
services.zfs.autoSnapshot.enable = true;
|
services.zfs.autoSnapshot.enable = true;
|
||||||
services.zfs.trim.enable = true;
|
services.zfs.trim.enable = true;
|
||||||
|
|
||||||
# cadey.cpu = {
|
within.microcode = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# vendor = "intel";
|
vendor = "intel";
|
||||||
# };
|
};
|
||||||
|
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue