1
0
Fork 0
nix-configuration/systems/x86_64-linux/Hevana/hardware-configuration.nix

40 lines
865 B
Nix
Raw Normal View History

# Minisforum UM340
2024-12-06 18:04:47 +00:00
{ modulesPath, namespace, ... }:
let
2024-09-06 00:24:12 +00:00
bootUUID = "D2E7-FE8F"; # The UUID of the boot partition.
luksUUID = "7b9c756c-ba9d-43fc-b935-7c77a70f5f1b"; # The UUID of the locked LUKS partition.
in
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
kernelModules = [ "kvm-amd" ];
initrd.availableKernelModules = [
"kvm-amd"
"nvme"
"xhci_pci"
"ahci"
"usb_storage"
"usbhid"
"sd_mod"
];
# Enable support for building ARM64 packages
binfmt.emulatedSystems = [ "aarch64-linux" ];
};
# Configure the main filesystem.
2024-12-06 18:04:47 +00:00
${namespace}.filesystem = {
enable = true;
partitions = {
boot = "/dev/disk/by-uuid/${bootUUID}";
luks = "/dev/disk/by-uuid/${luksUUID}";
};
swapFile = {
enable = true;
size = 16384;
};
};
}