11 lines
138 B
Nix
11 lines
138 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
nodePackages.prettier
|
|
nixfmt-rfc-style
|
|
treefmt
|
|
shfmt
|
|
];
|
|
}
|