10 lines
117 B
Nix
10 lines
117 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
nodePackages.prettier
|
||
|
treefmt
|
||
|
shfmt
|
||
|
];
|
||
|
}
|