reformat all nix code
1 file changed, 14 insertions(+), 8 deletions(-)
changed files
M user/settings/development/python.nix → user/settings/development/python.nix
@@ -1,13 +1,19 @@ -{ pkgs -, ... -}: { +{ + pkgs, + ... +}: +{ home.packages = with pkgs; [ ty uv ]; - programs.emacs.extraPackages = epkgs: (with epkgs; [ - (treesit-grammars.with-grammars (grammars: with grammars; [ - tree-sitter-python - ])) - ]); + programs.emacs.extraPackages = + epkgs: + (with epkgs; [ + (treesit-grammars.with-grammars ( + grammars: with grammars; [ + tree-sitter-python + ] + )) + ]); }