dotfiles/shell.nix

6 lines
189 B
Nix
Raw Normal View History

2022-01-22 22:38:36 +00:00
# Environment with formatting tools for editing these files
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.buildPackages.stylua pkgs.buildPackages.nixfmt ];
}