Add nix shell

This commit is contained in:
BuyMyMojo 2025-03-25 03:55:58 +11:00
parent 54f1588091
commit c3970dca5b
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
5 changed files with 272 additions and 218 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "A very basic flake";
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.callPackage ./shell.nix { inherit pkgs; };
};
}