Add treefmt

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-02-16 18:53:11 +00:00
parent 22c82653dd
commit 2888bb8b72
70 changed files with 414 additions and 291 deletions

View File

@@ -1,6 +1 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
bun
];
}
{ pkgs, ... }: pkgs.mkShell { packages = with pkgs; [ bun ]; }

View File

@@ -1,6 +1 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
nodejs
];
}
{ pkgs, ... }: pkgs.mkShell { packages = with pkgs; [ nodejs ]; }

View File

@@ -1,8 +1,6 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
(python3.withPackages (python-pkgs: with python-pkgs; [ pip ]))
];
packages = with pkgs; [ (python3.withPackages (python-pkgs: with python-pkgs; [ pip ])) ];
shellHook = ''
if git rev-parse --is-inside-work-tree &> /dev/null; then