summaryrefslogtreecommitdiff
path: root/templates/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/default.nix')
-rw-r--r--templates/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/default.nix b/templates/default.nix
deleted file mode 100644
index 62f535e..0000000
--- a/templates/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-self:
-let
- # string -> string -> {}
- toTemplate = name: description: {
- path = self + "/templates/" + name;
- inherit description;
- };
-in
-builtins.mapAttrs toTemplate {
- basic = "minimal boilerplate for my flakes";
- full = "big template for complex flakes (using flake-parts)";
- nixos = "minimal boilerplate for flake-based nixos configuration";
-}