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

31 lines
505 B
Nix
Raw Normal View History

2024-06-20 08:59:56 -05:00
{
2025-03-06 09:51:33 -06:00
lib,
pkgs,
...
}:
with lib; {
2024-06-20 08:59:56 -05:00
boot = {
2024-12-27 21:30:25 -06:00
initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
];
2025-03-06 09:51:33 -06:00
kernelModules = [];
extraModulePackages = [];
2024-06-20 08:59:56 -05:00
2024-07-13 03:06:35 -05:00
# for managing/mounting nfs
2025-03-06 09:51:33 -06:00
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";
}