InvoicePlane beta module and package for NixOS
- Nix 100%
| modules | ||
| packages | ||
| flake.nix | ||
| README.md | ||
invoiceplane-nixos
Add the repository to your flake.nix:
{
inputs = {
invoiceplane = {
url = "git+https://git.notthebe.ee/notthebee/invoiceplane-nixos";
inputs.nixpkgs.follows = "nixpkgs";
};
}
}
Add the nixosModule to your NixOS configuration:
modules = [
self.inputs.invoiceplane.nixosModules.default
];
Configure the invoiceplane-beta service:
services.invoiceplane-beta = {
sites."invoice.example.com = {
settings = {
DISABLE_SETUP = true;
SETUP_COMPLETED = true;
IP_URL = "https://invoice.example.com";
};
};
};