[shared] Formatters in their own file

This commit is contained in:
2025-04-16 00:08:42 +02:00
parent e515408ef2
commit 3c5484f1a1
4 changed files with 17 additions and 11 deletions

View File

@ -1,12 +1,11 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
imports = [
(lib.custom.relativeToRoot "shared/modules/development/formatters.nix")
];
environment.systemPackages = with pkgs; [
# Tools
just
# Formatters
treefmt
shfmt
nodePackages.prettier
];
];
}