infrastructure/deploy/docs-ops/default.nix

18 lines
310 B
Nix
Raw Permalink Normal View History

2024-10-02 15:52:04 +02:00
{
deployPkgs,
pkgs,
self,
system,
...
}:
let
domain = "docs-ops.qo.is";
in
{
nodes.lindberg-webapps.profiles."${domain}" = {
sshUser = "nginx-${domain}";
path = deployPkgs.deploy-rs.lib.activate.noop self.packages.${system}.docs;
profilePath = "/var/lib/nginx-${domain}/root";
};
}