From d12e7600cfb5c037505498c8a660dbd239a99bed Mon Sep 17 00:00:00 2001 From: fruchti Date: Sun, 5 Mar 2023 13:05:30 +0100 Subject: [PATCH] Add example configuration.nix --- configuration.nix.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 configuration.nix.example diff --git a/configuration.nix.example b/configuration.nix.example new file mode 100644 index 0000000..637958f --- /dev/null +++ b/configuration.nix.example @@ -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 + ]; +} +