feat(nix/prog/hledger): add aliases

This commit is contained in:
Dmitriy Pleshevskiy 2022-05-15 14:40:05 +03:00
parent 655f060a36
commit 5f8743dfcf

View file

@ -4,8 +4,13 @@ with lib;
let
cfg = config.progs.hledger;
bin = "${pkgs.hledger}/bin/hledger";
sbin = "${bin} --strict";
hledgerAliases = {
# TODO: add aliases for business and family accounts
hle = bin;
shle = sbin;
};
in
{