Change footer styling

This commit is contained in:
Jonas Heinrich 2025-02-18 13:46:30 +01:00
parent 7267ae79be
commit 1fe0104815
4 changed files with 56 additions and 25 deletions

View file

@ -1,8 +1,9 @@
{
description = "Invoiceplane invoice template development shell";
inputs.nixpkgs.url = "git+https://github.com/NixOS/nixpkgs?shallow=1&ref=nixpkgs-unstable";
#inputs.nixpkgs.url = "nixpkgs/nixos-24.11";
inputs.nixpkgs.url = "github:onny/nixpkgs/invoiceplane-https";
#inputs.nixpkgs.url = "github:onny/nixpkgs/invoiceplane-https";
outputs = { self, nixpkgs, ... }@inputs:
let
@ -41,11 +42,15 @@
};
};
services.caddy.virtualHosts."localhost".hostName = "http://localhost";
# FIXME
# https://github.com/NixOS/nixpkgs/pull/309908
services.caddy.virtualHosts."http://localhost".logFormat = lib.mkForce ''
output discard
'';
nixos-shell.mounts.extraMounts = {
"/var/lib/invoiceplane/localhost/pdf" = {
target = ./.;
target = /home/onny/projects/invoiceplane-heinrichmalerbetrieb;
cache = "none";
};
};