deployment module

This commit is contained in:
Luj 2023-07-27 21:08:00 +02:00
parent 5a5fbea34f
commit be70ed9305
4 changed files with 27 additions and 8 deletions

View file

@ -0,0 +1,22 @@
{ lib, pkgs, config, ... }:
with lib;
let
cfg = config.luj.deployment;
hostname = config.networking.hostName;
in
{
options.luj.deployment.enable = mkEnableOption "activate deployment on machine";
config = mkIf cfg.enable {
deployment = {
targetHost = "${hostname}.${lib.luj.machines.${hostname}.tld}";
targetPort = 45;
targetUser = "root";
allowLocalDeployment = true;
};
};
}