mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
6 lines
189 B
Nix
6 lines
189 B
Nix
|
# Environment with formatting tools for editing these files
|
||
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = [ pkgs.buildPackages.stylua pkgs.buildPackages.nixfmt ];
|
||
|
}
|