about summary refs log blame commit diff stats
path: root/hosts/spawn/hardware/default.nix
blob: f6500ed5a7f9de7c30b61f9ab7dfb95b892c4f89 (plain) (tree)


























                                                                  
{
  config,
  lib,
  pkgs,
  modulesPath,
  ...
}: {
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix")
    (modulesPath + "/installer/scan/detected.nix")
    # (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")

    (modulesPath + "/profiles/base.nix")
    (modulesPath + "/profiles/minimal.nix")
    (modulesPath + "/profiles/all-hardware.nix")
  ];

  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

  system.fileSystemLayouts = {
    enable = true;
    mainDisk = "/dev/disk/by-uuid/<uuid>";
    efiDisk = "/dev/disk/by-uuid/<uuid>";
  };

  boot = {
  };
}