45 lines
992 B
Nix
45 lines
992 B
Nix
# Minisforum UM340
|
|
{ modulesPath, ... }:
|
|
let
|
|
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 = {
|
|
supportedFilesystems = [ "btrfs" ];
|
|
kernelModules = [ "kvm-amd" ];
|
|
|
|
initrd = {
|
|
supportedFilesystems = [ "btrfs" ];
|
|
availableKernelModules = [
|
|
"nvme"
|
|
"xhci_pci"
|
|
"ahci"
|
|
"usb_storage"
|
|
"usbhid"
|
|
"sd_mod"
|
|
"btrfs"
|
|
];
|
|
kernelModules = [ ];
|
|
};
|
|
|
|
# Enable support for building ARM64 packages
|
|
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
};
|
|
|
|
# Configure the main filesystem.
|
|
aux.system.filesystem = {
|
|
enable = true;
|
|
partitions = {
|
|
boot = "/dev/disk/by-uuid/${bootUUID}";
|
|
luks = "/dev/disk/by-uuid/${luksUUID}";
|
|
};
|
|
swapFile = {
|
|
enable = true;
|
|
size = 16384;
|
|
};
|
|
};
|
|
}
|