reformat all nix code
1 file changed, 16 insertions(+), 10 deletions(-)
changed files
M user/settings/accounting.nix → user/settings/accounting.nix
@@ -1,7 +1,9 @@ -{ config -, pkgs -, ... -}: { +{ + config, + pkgs, + ... +}: +{ home.packages = with pkgs; [ ledger hledger@@ -9,10 +11,14 @@ bean-add beancount reckon ]; - programs.emacs.extraPackages = epkgs: (with epkgs; [ - (treesit-grammars.with-grammars (grammars: with grammars; [ - tree-sitter-beancount - tree-sitter-ledger - ])) - ]); + programs.emacs.extraPackages = + epkgs: + (with epkgs; [ + (treesit-grammars.with-grammars ( + grammars: with grammars; [ + tree-sitter-beancount + tree-sitter-ledger + ] + )) + ]); }