63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
inputs,
|
|
self,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
in
|
|
{
|
|
|
|
# Verify the existence of a binary inside of a derivation.
|
|
# Returns the path to the binary or throws.
|
|
checkPath =
|
|
pkg: bin:
|
|
let
|
|
abs = lib.getExe' pkg bin;
|
|
in
|
|
if builtins.pathExists abs then abs else throw "${abs} does not exist.";
|
|
|
|
mkSystem =
|
|
{
|
|
withSystem,
|
|
hostname,
|
|
extraModules ? [ ],
|
|
system,
|
|
}:
|
|
withSystem system (
|
|
{ inputs', self', ... }:
|
|
lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
"${self}/hosts/${hostname}/configuration.nix"
|
|
"${self}/options"
|
|
"${self}/modules/commons"
|
|
{ networking.hostName = hostname; }
|
|
] ++ extraModules;
|
|
specialArgs = {
|
|
inherit inputs inputs';
|
|
inherit self self';
|
|
pubkeys = import ../../options/keys.nix { inherit lib; };
|
|
username = "ny";
|
|
};
|
|
}
|
|
);
|
|
|
|
validatePath =
|
|
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
|
|
|
mkVHost = name: port: ssl: {
|
|
inherit name;
|
|
value = {
|
|
enableACME = ssl;
|
|
forceSSL = ssl;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:${toString port}";
|
|
extraConfig = ''
|
|
proxy_ssl_server_name on;
|
|
proxy_pass_header Authorization;'';
|
|
};
|
|
};
|
|
};
|
|
}
|