diff options
author | Alan Pearce | 2020-03-13 14:22:34 +0100 |
---|---|---|
committer | Alan Pearce | 2020-03-13 14:38:37 +0100 |
commit | 413cf3b4cc986b2d9a8e775ec5c5ad8ef783ba2c (patch) | |
tree | ca0ac5f3686e027d62c0cc42e691497cbd8cf1b0 /user/settings | |
parent | bdab7def66314e83f4577dd70b2855228cc47606 (diff) | |
download | nixfiles-413cf3b4cc986b2d9a8e775ec5c5ad8ef783ba2c.tar.lz nixfiles-413cf3b4cc986b2d9a8e775ec5c5ad8ef783ba2c.tar.zst nixfiles-413cf3b4cc986b2d9a8e775ec5c5ad8ef783ba2c.zip |
Move accounting module to user/
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/accounting.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/user/settings/accounting.nix b/user/settings/accounting.nix new file mode 100644 index 00000000..65b3a6e1 --- /dev/null +++ b/user/settings/accounting.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + ledger + hledger + bean-add + beancount + reckon + ]; +} |