diff options
author | Alan Pearce | 2017-09-09 16:20:38 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | a992ae2e0100c761e5385b938d61a124aa7d503c (patch) | |
tree | 73dd481f7bfe0170d8ed4ed8180806803f2ef74a /modules | |
parent | dc4ea159709bf7904140f2430bb0a1178dd152dd (diff) | |
download | nixos-configuration-a992ae2e0100c761e5385b938d61a124aa7d503c.tar.lz nixos-configuration-a992ae2e0100c761e5385b938d61a124aa7d503c.tar.zst nixos-configuration-a992ae2e0100c761e5385b938d61a124aa7d503c.zip |
Add accounting module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/accounting.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/accounting.nix b/modules/accounting.nix new file mode 100644 index 0000000..0b180a8 --- /dev/null +++ b/modules/accounting.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + ledger + bean-add + beancount + fava + ]; +} |