hosts/configuration.nix.example

16 lines
241 B
Plaintext
Raw Normal View History

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