reformat all nix code
1 file changed, 26 insertions(+), 17 deletions(-)
changed files
M user/settings/development/lisp.nix → user/settings/development/lisp.nix
@@ -1,21 +1,30 @@ -{ config -, pkgs -, ... -}: { - home.packages = with pkgs; [ - clisp - sbcl - asdf - cl-launch - ] ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [ - ccl - ]; +{ + config, + pkgs, + ... +}: +{ + home.packages = + with pkgs; + [ + clisp + sbcl + asdf + cl-launch + ] + ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [ + ccl + ]; - programs.emacs.extraPackages = epkgs: (with epkgs; [ - (treesit-grammars.with-grammars (grammars: with grammars; [ - tree-sitter-commonlisp - ])) - ]); + programs.emacs.extraPackages = + epkgs: + (with epkgs; [ + (treesit-grammars.with-grammars ( + grammars: with grammars; [ + tree-sitter-commonlisp + ] + )) + ]); programs.git.attributes = [ "*.lisp diff=common-lisp"