feat: initial commit

This commit is contained in:
Jacob Jonsson 2025-10-27 22:16:55 +01:00
commit 00d2cf3c69
Signed by: Jassob
GPG key ID: 7E30B9B047F7202E
6 changed files with 332 additions and 0 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "ziglings";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = [
pkgs.zig
];
};
};
}