repo cleanup

This commit is contained in:
Noah Masur
2025-03-08 10:26:26 -05:00
parent 9d7c6b3215
commit 350c94af3c
10 changed files with 84 additions and 749 deletions

View File

@ -0,0 +1,25 @@
{
description = "Basic project";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs }:
let
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
default = pkgs.mkShell { buildInputs = with pkgs; [ nixfmt-rfc-style ]; };
}
);
};
}