19 lines
261 B
Nix
19 lines
261 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
nixfmt
|
||
|
beautysh
|
||
|
black
|
||
|
isort
|
||
|
nodePackages.fixjson
|
||
|
fprettify
|
||
|
shellharden
|
||
|
shfmt
|
||
|
stylua
|
||
|
python3Packages.mdformat
|
||
|
html-tidy
|
||
|
nodePackages.js-beautify
|
||
|
];
|
||
|
}
|