Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
12 lines
154 B
Nix
12 lines
154 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
plugins = {
|
|
ledger = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
bin = lib.getExe pkgs.hledger;
|
|
};
|
|
};
|
|
};
|
|
}
|