about summary refs log tree commit diff
path: root/modules/hardware/intel
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hardware/intel')
-rw-r--r--modules/hardware/intel/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/hardware/intel/default.nix b/modules/hardware/intel/default.nix
deleted file mode 100644
index 26d9877..0000000
--- a/modules/hardware/intel/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, ... }:
-let cfg = config.my.hardware.intel;
-in
-{
-  options.my.hardware.intel = with lib; {
-    enable = mkEnableOption "intel related configuration";
-  };
-
-  config = lib.mkIf cfg.enable {
-    # Enable microcode update
-    hardware.cpu.intel.updateMicrocode = true;
-    boot.kernelModules = [ "kvm-intel" ];
-  };
-}