feat: hledger test

This commit is contained in:
Nick 2025-01-21 23:00:38 -06:00
parent b7f7f50622
commit efbbeaa942

View file

@ -50,18 +50,26 @@ in
}; };
}; };
# fileSystems."/var/lib/${service.name}" = { fileSystems."/var/lib/${service.name}" = {
# device = service.paths.path0; device = service.paths.path0;
# fsType = "none"; fsType = "none";
# options = [ options = [
# "bind" "bind"
# ]; ];
# depends = [ depends = [
# server.storage0.mount server.storage0.mount
# ]; ];
# }; };
# systemd.tmpfiles.rules = [ systemd.tmpfiles.rules = [
# "Z ${service.paths.path0} 0755 ${service.name} ${service.name} -" "Z ${service.paths.path0} 0755 ${service.name} ${service.name} -"
# ]; ];
networking = {
firewall = {
allowedTCPPorts = [
service.ports.port0
];
};
};
} }