about summary refs log tree commit diff stats
path: root/hosts/_unmaintained/isimud/hardware/default.nix
blob: f55365b3805e340a36be76e0cc4b6864e751a862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  pkgs,
  modulesPath,
  ...
}: {
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix")
  ];

  hardware.cpu.amd.updateMicrocode = true; # Why not?
  hardware.cpu.intel.updateMicrocode = true; # Why not?

  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

  soispha.disks = {
    enable = false;
  };

  boot = {
    kernelModules = [];
    kernelPackages = lib.mkDefault pkgs.linuxPackages_6_1; # use this kernel, as it's supported by zfs
  };
}