{ config, pkgs, lib, ... }:
let
    hostName = "Host name here!";
in
{
    imports = [
        ./hardware-configuration.nix
        ./options
        ./overlays
        ./base
        ./hosts/${hostName}.nix
        ./personal.nix
    ];
}