a flake module to ease creating and managing multiple hosts in your nix flake.

fix: use correct paths for templates

Changed files
+4 -4
+4 -4
flake.nix
··· 6 6 7 7 templates = { 8 8 multi = { 9 - path = ./templates/multi; 9 + path = ./examples/multi; 10 10 description = "A multi-system flake with auto construction enabled, but only using x86_64-linux."; 11 11 }; 12 12 13 13 multi-specialised = { 14 - path = ./templates/multi-specialised; 14 + path = ./examples/multi-specialised; 15 15 description = "A multi-system flake with auto construction enabled, using the custom class system of easy-hosts"; 16 16 }; 17 17 18 18 not-auto = { 19 - path = ./templates/not-auto; 19 + path = ./examples/not-auto; 20 20 description = "A flake with auto construction disabled, using only the `easyHosts.hosts` attribute."; 21 21 }; 22 22 23 23 only = { 24 - path = ./templates/only; 24 + path = ./examples/only; 25 25 description = "A flake with auto construction enabled, with only one class and a more 'flat' structure."; 26 26 }; 27 27 };