summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-07 10:10:55 -0400
committerseth <[email protected]>2023-10-07 10:18:46 -0400
commit519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch)
tree441a3b0cbf33a15ac052a1fd6a6894cf169f493b /templates
parent62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff)
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'templates')
-rw-r--r--templates/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/templates/default.nix b/templates/default.nix
deleted file mode 100644
index 6ea1be4..0000000
--- a/templates/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- flake = {
- templates = let
- # string -> string -> {}
- mkTemplate = name: description: {
- path = ./${name};
- inherit description;
- };
- in {
- basic = mkTemplate "basic" "minimal boilerplate for my flakes";
- full = mkTemplate "full" "big template for complex flakes (using flake-parts)";
- nixos = mkTemplate "nixos" "minimal boilerplate for flake-based nixos configuration";
- };
- };
-}