mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
18 lines
285 B
Nix
Executable file
18 lines
285 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
dummy
|
|
;
|
|
hledgerLabel = "Hledger";
|
|
hledgerName = "hledger";
|
|
in
|
|
{
|
|
label = hledgerLabel;
|
|
name = hledgerName;
|
|
paths = {
|
|
path0 = "/mnt/media/storage/${hledgerLabel}";
|
|
};
|
|
ports = {
|
|
port0 = 5000;
|
|
};
|
|
}
|