snowfield/modules/deployment/default.nix
2024-03-30 20:18:12 +01:00

23 lines
446 B
Nix

{ lib, 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;
buildOnTarget = true;
};
};
}