# PLACEHOLDER — replace with the output of `nixos-generate-config` on the # target machine. The mkDefault values below only exist so the flake # evaluates and `nix flake check` passes before first install. { lib, ... }: { boot.initrd.availableKernelModules = lib.mkDefault [ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ]; fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-label/nixos"; fsType = "ext4"; }; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }