54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
|
{modulesPath, ...}: {
|
||
|
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||
|
|
||
|
# === Boot options ===
|
||
|
boot.initrd.availableKernelModules = ["xhci_pci" "ehci_pci" "ahci" "usbhid" "uas" "usb_storage" "sd_mod"];
|
||
|
boot.initrd.kernelModules = [];
|
||
|
boot.kernelModules = ["kvm-intel"];
|
||
|
boot.extraModulePackages = [];
|
||
|
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
main = {
|
||
|
device = "/dev/disk/by-id/ata-SanDisk_SD6SF1M128G1022_142661400678";
|
||
|
type = "disk";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
boot = {
|
||
|
size = "1M";
|
||
|
type = "EF02"; # for grub MBR
|
||
|
};
|
||
|
ESP = {
|
||
|
size = "1G";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
mountOptions = ["umask=0077"];
|
||
|
};
|
||
|
};
|
||
|
plainSwap = {
|
||
|
size = "8G";
|
||
|
content = {
|
||
|
type = "swap";
|
||
|
discardPolicy = "both";
|
||
|
resumeDevice = true;
|
||
|
};
|
||
|
};
|
||
|
root = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "ext4";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|