Commit d4b50ce9 authored by locallycompact's avatar locallycompact
Browse files

use nixica for nginx

No related merge requests found
Pipeline #3530 failed with stages
in 11 seconds
loops:
build: nix build -L .#nixosConfigurations.argus.config.system.build.toplevel
check: nix flake check -L
This diff is collapsed.
......@@ -61,20 +61,14 @@
in
{
apps = nixinate.nixinate.${system} self;
checks.${system} =
with lint-utils.linters.${system};
{
nixpkgs-fmt = nixpkgs-fmt { src = self; };
};
devShells.${system}.default =
with horizon-platform.packages.${system};
pkgs.mkShell {
buildInputs = [ feedback ];
};
apps = nixinate.nixinate.${system} self;
nixosConfigurations = {
studiopolis = nixpkgs.lib.nixosSystem {
inherit system;
......@@ -84,7 +78,7 @@
_module.args.nixinate = {
host = "horizon-haskell.net";
sshUser = "root";
buildOn = "local";
buildOn = "remote";
substituteOnTarget = true;
hermetic = false;
};
......@@ -100,6 +94,10 @@
hostName = "www.horizon-haskell.net";
root = inputs.horizon-haskell-net.packages.${system}.default;
})
(nixica.lib.mkNginxStaticModule {
hostName = "docs.horizon-haskell.net";
root = inputs.horizon-haskell-net-docs.packages.${system}.default;
})
(nixica.lib.mkNginxStaticModule {
hostName = "rescue.horizon-haskell.net";
root = inputs.rescue-horizon-haskell-net.packages.${system}.default;
......@@ -125,12 +123,8 @@
milloni.nixosModules.milloni-user
(import ./modules/age.nix)
(import ./modules/configuration.nix)
(import ./modules/nginx.nix {
hostName = "docs.horizon-haskell.net";
horizon-haskell-net-docs = inputs.horizon-haskell-net-docs.packages.${system}.default;
})
(import ./modules/nix.nix)
(import ./modules/discourse.nix)
(import ./modules/nix.nix)
];
};
};
......
......@@ -2,7 +2,6 @@
{
imports = [ "${nixpkgs}/nixos/modules/virtualisation/openstack-config.nix" ];
networking.hostName = "studiopolis";
......
{ hostName, horizon-haskell-net-docs }:
{ config, pkgs, lib, ... }: {
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
virtualHosts.${hostName} = {
enableACME = true;
forceSSL = true;
locations."/".root = horizon-haskell-net-docs;
serverName = "${hostName}";
};
};
security.acme = {
acceptTerms = true;
certs."${hostName}" = {
email = "acme@${hostName}";
};
};
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment