nixos-configuration/hosts/pi4/development.nix

13 lines
154 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Tools
just
# Formatters
treefmt
shfmt
nodePackages.prettier
];
}