Add example configuration.nix

This commit is contained in:
fruchti 2023-03-05 13:05:30 +01:00
parent a559c6172c
commit d12e7600cf

15
configuration.nix.example Normal file
View file

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