Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
15 lines
324 B
Nix
15 lines
324 B
Nix
# SPDX-FileCopyrightText: 2022 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts."phss.sbruder.de" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
root = "${inputs.password-hash-self-service.packages.${pkgs.system}.default}";
|
|
};
|
|
}
|