nixos-config/hosts/emenel-services/hardware-configuration.nix

9 lines
349 B
Nix
Raw Normal View History

2025-04-12 16:26:18 -04:00
{ config, lib, pkgs, modulesPath, ... }:
2025-04-12 11:01:31 -04:00
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2025-04-12 16:26:18 -04:00
# boot.loader.grub.device = "/dev/sda";
2025-04-12 11:01:31 -04:00
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
boot.initrd.kernelModules = [ "nvme" ];
2025-04-12 16:26:18 -04:00
# fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
2025-04-12 11:01:31 -04:00
}