this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add favicon location for nginx

Ben C a58f5221 e2789363

+9
+9
nixosModules/cocoon.nix
··· 75 75 type = lib.types.str; 76 76 description = "Public facing hostname for the server"; 77 77 }; 78 + favicon = lib.mkOption { 79 + type = lib.types.nullOr lib.types.path; 80 + description = "Path to favicon file to serve"; 81 + default = null; 82 + }; 78 83 }; 79 84 80 85 config = let ··· 118 123 metadata = { 119 124 accountCreatedAt = "2026-01-19T05:59:50.391Z"; 120 125 }; 126 + }; 127 + "/favicon.ico" = lib.mkIf (conf.favicon != null) { 128 + root = builtins.dirOf conf.favicon; 129 + tryFiles = "${builtins.baseNameOf conf.favicon} =404"; 121 130 }; 122 131 123 132 # pass everything else to the pds
res/favicon.ico

This is a binary file and will not be displayed.