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