Disko auto-generates fileSystems with by-partlabel paths, but for manual install via loop devices we need by-label paths. mkForce ensures our paths win during evaluation.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
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 = [ ];
|
|
|
|
# Filesystems for NixOS install.
|
|
# mkForce overrides disko's auto-generated paths so we can use
|
|
# filesystem labels (by-label) which work with loop device installs.
|
|
# Disko will set its own paths when nixos-anywhere is used.
|
|
fileSystems."/" = lib.mkForce {
|
|
device = "/dev/disk/by-label/NIXOS_UCM5";
|
|
fsType = "ext4";
|
|
options = [ "noatime" ];
|
|
};
|
|
|
|
fileSystems."/boot/firmware" = lib.mkForce {
|
|
device = "/dev/disk/by-label/FIRMWARE";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
};
|
|
|
|
fileSystems."/home" = lib.mkForce {
|
|
device = "/dev/disk/by-label/NIXOS_HOME";
|
|
fsType = "ext4";
|
|
options = [ "noatime" ];
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
hardware.enableRedistributableFirmware = true;
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
}
|