Commit 47aa88c

HPCesia <me@hpcesia.com>
2026-02-24 06:06:45
First commit
config/.gitkeep
mods/.gitkeep
resourcepack/.gitkeep
.envrc
@@ -0,0 +1,1 @@
+use flake
.gitattributes
@@ -0,0 +1,2 @@
+# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
+* -text
.gitignore
@@ -0,0 +1,16 @@
+# == General ==
+# Windows
+Thumbs.db
+
+# macOS
+.DS_Store
+__MACOSX/
+
+# Linux
+.directory
+.Trash-*
+
+# == Nix ==
+result
+result-*
+.direnv
.packwizignore
@@ -0,0 +1,12 @@
+# Project README file
+/README.md
+
+# == General
+/.*
+.gitkeep
+
+# == Nix ==
+flake.nix
+flake.lock
+result
+result-*
flake.lock
@@ -0,0 +1,61 @@
+{
+  "nodes": {
+    "flake-parts": {
+      "inputs": {
+        "nixpkgs-lib": "nixpkgs-lib"
+      },
+      "locked": {
+        "lastModified": 1769996383,
+        "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=",
+        "owner": "hercules-ci",
+        "repo": "flake-parts",
+        "rev": "57928607ea566b5db3ad13af0e57e921e6b12381",
+        "type": "github"
+      },
+      "original": {
+        "owner": "hercules-ci",
+        "repo": "flake-parts",
+        "type": "github"
+      }
+    },
+    "nixpkgs": {
+      "locked": {
+        "lastModified": 1771207753,
+        "narHash": "sha256-b9uG8yN50DRQ6A7JdZBfzq718ryYrlmGgqkRm9OOwCE=",
+        "owner": "NixOS",
+        "repo": "nixpkgs",
+        "rev": "d1c15b7d5806069da59e819999d70e1cec0760bf",
+        "type": "github"
+      },
+      "original": {
+        "owner": "NixOS",
+        "ref": "nixpkgs-unstable",
+        "repo": "nixpkgs",
+        "type": "github"
+      }
+    },
+    "nixpkgs-lib": {
+      "locked": {
+        "lastModified": 1769909678,
+        "narHash": "sha256-cBEymOf4/o3FD5AZnzC3J9hLbiZ+QDT/KDuyHXVJOpM=",
+        "owner": "nix-community",
+        "repo": "nixpkgs.lib",
+        "rev": "72716169fe93074c333e8d0173151350670b824c",
+        "type": "github"
+      },
+      "original": {
+        "owner": "nix-community",
+        "repo": "nixpkgs.lib",
+        "type": "github"
+      }
+    },
+    "root": {
+      "inputs": {
+        "flake-parts": "flake-parts",
+        "nixpkgs": "nixpkgs"
+      }
+    }
+  },
+  "root": "root",
+  "version": 7
+}
flake.nix
@@ -0,0 +1,24 @@
+{
+  inputs = {
+    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
+    flake-parts.url = "github:hercules-ci/flake-parts";
+  };
+
+  outputs = inputs @ {flake-parts, ...}:
+    flake-parts.lib.mkFlake {inherit inputs;} ({...}: {
+      systems = [
+        "x86_64-linux"
+        "aarch64-linux"
+        "x86_64-darwin"
+        "aarch64-darwin"
+      ];
+
+      perSystem = {pkgs, ...}: {
+        devShells.default = pkgs.mkShell {
+          packages = with pkgs; [
+            packwiz
+          ];
+        };
+      };
+    });
+}
index.toml
@@ -0,0 +1,2 @@
+hash-format = "sha256"
+files = []
pack.toml
@@ -0,0 +1,13 @@
+name = "Packwiz Starter Template"
+author = "HPCesia" # Should be your name
+version = "1.0.0"
+pack-format = "packwiz:1.1.0"
+
+[index]
+file = "index.toml"
+hash-format = "sha256"
+hash = "7b81c9e9d9e6e21a9865a2dded0dfd77e7683d679b98fe5b0114eaed9a31f17e"
+
+[versions]
+fabric = "0.18.4"
+minecraft = "1.21.11"
README.md
@@ -0,0 +1,3 @@
+# Packwiz Starter Template
+
+A Minecraft modpack crafting template.