Operand

_

gram: nux

> ./cell/par/machine.nix

{ config, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; };
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
boot.kernelModules = [ ''kvm-intel'' ];
fileSystems."/boot" = { device = "/dev/nvme0n1p1"; fsType = "vfat"; };
fileSystems."/nix" = { device = "/dev/nvme0n1p2"; fsType = "ext4"; };
fileSystems."/" = { device = "/dev/nvme0n1p3"; fsType = "ext4"; };
fileSystems."/home" = { device = "/dev/nvme0n1p4"; fsType = "ext4"; };
}