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 + ]; +} +