fruitbasket/modules/web/sharepic.nix

15 lines
384 B
Nix
Raw Normal View History

2025-02-15 00:31:23 +01:00
{ pkgs, config, ... }:
let
domain = "sharepic.${config.networking.domain}";
in
{
services.nginx.virtualHosts."${domain}" = {
root = pkgs.fetchFromGitHub {
2025-02-15 00:31:05 +01:00
owner = "jannikmenzel";
repo = "iFSR-Sharepicgenerator";
rev = "ac721d5fff2dba1f046939a6d6532b1a8cfceba8";
hash = "sha256-of+N58TDt2BcbDVEriKn6rjQVl0GdV4ZMEblrdUutZk=";
};
};
}