From 04c973335eeea558f49aad967d26f28e0265a05a Mon Sep 17 00:00:00 2001 From: Robin Hack Date: Mon, 3 Jun 2024 13:29:44 +0200 Subject: [PATCH] filesender: FIX: missing format definition. Seems like there is missing format definition in example. Affected line: default = format.lib.mkMixedArray [ "exampleauth:UserPass" ] { --- nixos/modules/services/web-apps/filesender.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/web-apps/filesender.md b/nixos/modules/services/web-apps/filesender.md index 44d066761b9a4..bb971fb984e54 100644 --- a/nixos/modules/services/web-apps/filesender.md +++ b/nixos/modules/services/web-apps/filesender.md @@ -9,6 +9,9 @@ FileSender uses [SimpleSAMLphp](https://simplesamlphp.org/) for authentication, Minimal working instance of FileSender that uses password-authentication would look like this: ```nix +let + format = pkgs.formats.php {}; +in { networking.firewall.allowedTCPPorts = [ 80 443 ]; services.filesender = {