Run treefmt

This commit is contained in:
2026-02-27 21:32:50 +01:00
parent 4df4c00350
commit 4198e5933c

View File

@@ -2,11 +2,13 @@
description = "Central C++ Dev Shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
outputs = { self, nixpkgs }:
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
in
{
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
@@ -23,4 +25,4 @@
'';
};
};
}
}