dotfiles/config/instances/config/hledger.nix

19 lines
285 B
Nix
Raw Normal View History

2025-01-22 00:57:41 -06:00
{ instancesFunctions }:
2025-01-21 21:58:09 -06:00
let
2025-01-22 00:57:41 -06:00
inherit (instancesFunctions)
dummy
;
2025-01-21 21:58:09 -06:00
hledgerLabel = "Hledger";
hledgerName = "hledger";
in
{
label = hledgerLabel;
name = hledgerName;
paths = {
2025-01-22 00:54:45 -06:00
path0 = "/mnt/media/storage/${hledgerLabel}";
2025-01-21 21:58:09 -06:00
};
ports = {
port0 = 5000;
};
}