27 lines
792 B
Nix
27 lines
792 B
Nix
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports =
|
||
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||
|
|
];
|
||
|
|
|
||
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" "usb_storage" "sdhci_pci" "nvme" ];
|
||
|
|
boot.initrd.kernelModules = [ ];
|
||
|
|
boot.extraModulePackages = [ ];
|
||
|
|
|
||
|
|
# uConsole CM5 uses NVMe or eMMC for boot storage
|
||
|
|
# The uconsole-cm5 module sets up /boot/firmware and default /
|
||
|
|
# Override device label here if using different storage
|
||
|
|
fileSystems."/" = lib.mkDefault {
|
||
|
|
device = "/dev/disk/by-label/NIXOS_UCM5";
|
||
|
|
fsType = "ext4";
|
||
|
|
options = [ "noatime" ];
|
||
|
|
};
|
||
|
|
|
||
|
|
swapDevices = [ ];
|
||
|
|
|
||
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
||
|
|
hardware.enableRedistributableFirmware = true;
|
||
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||
|
|
}
|