mochi/nixos/profiles/hw-generic-x86.nix

31 lines
506 B
Nix
Raw Normal View History

2024-06-20 08:59:56 -05:00
{ lib, pkgs, ... }:
with lib;
{
boot = {
2024-12-27 21:30:25 -06:00
initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
];
2024-06-20 08:59:56 -05:00
kernelModules = [ ];
extraModulePackages = [ ];
2024-07-13 03:06:35 -05:00
# for managing/mounting nfs
supportedFilesystems = [ "nfs" ];
2024-06-20 08:59:56 -05:00
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
grub.memtest86.enable = true;
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}