summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-01-31 07:36:52 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-01-31 07:36:52 +0100
commit2ce14aec655589f00442ab469b9d877a143eeefd (patch)
tree8cd12b1869d10ef16a449a8e182a3077b86c9810 /flake.nix
init commit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..8ffc51e
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,18 @@
+{
+ description = "Parz";
+
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.11";
+ };
+
+ outputs = { self, nixpkgs }:
+ let
+ pkgs = import nixpkgs { system = "x86_64-linux"; };
+ in
+ {
+ devShells.x86_64-linux.default = pkgs.zigStdenv.mkDerivation {
+ name = "zig-dev-shell";
+ buildInputs = [ pkgs.zig ];
+ };
+ };
+}