refac(nix/prog/hledger): add interest addon

chore(nix/prog/hledger): change commodities
This commit is contained in:
Dmitriy Pleshevskiy 2022-05-15 13:19:20 +03:00
parent 3e988e6239
commit 655f060a36

View file

@ -21,13 +21,14 @@ in
home.packages = with pkgs; [ home.packages = with pkgs; [
hledger hledger
hledger-ui hledger-ui
hledger-interest
]; ];
home.file = { home.file = {
"finance/commodities.journal".text = '' "finance/commodities.journal".text = ''
; Fiat currencies ; Fiat currencies
commodity RUB 1000.00 commodity 1.000,00 RUB
commodity $1000.00 commodity 1.000,00 USD
; Investment commodities ; Investment commodities
@ -36,7 +37,7 @@ in
; Other ; Other
; Default commodity ; Default commodity
D RUB 1000.00 ; D 1.000,00 RUB
''; '';
}; };