2022-06-09 23:20:17 +02:00
|
|
|
{ config, pkgs, lib, modulesPath, ... }:
|
|
|
|
{
|
|
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
|
|
|
2022-11-29 17:06:46 +01:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"ata_piix"
|
|
|
|
"sd_mod"
|
|
|
|
"uhci_hcd"
|
|
|
|
"virtio_pci"
|
|
|
|
"virtio_scsi"
|
|
|
|
];
|
|
|
|
boot.initrd.kernelModules = [
|
|
|
|
"dm-snapshot"
|
|
|
|
];
|
2022-06-09 23:20:17 +02:00
|
|
|
boot.kernelModules = [ ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2023-03-19 16:14:20 +01:00
|
|
|
|
|
|
|
my.hardware = {
|
|
|
|
drive-monitor = {
|
|
|
|
enable = true;
|
|
|
|
OnFailureMail = "server@buehler.rocks";
|
|
|
|
};
|
|
|
|
};
|
2022-06-09 23:20:17 +02:00
|
|
|
}
|