Agenix rekey

This commit is contained in:
Théo Barnouin 2025-05-28 14:59:13 +02:00
parent dbf096d10d
commit 008ecc2661
28 changed files with 327 additions and 308 deletions

View file

@ -87,6 +87,25 @@
}
];
};
onlyoffice = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = [
agenix.nixosModules.default
crowdsec.nixosModules.crowdsec-firewall-bouncer
"${inputs.nixpkgs}/nixos/modules/virtualisation/proxmox-lxc.nix"
"${inputs.self}/systems/minimalLXCConfig.nix"
"${inputs.self}/services"
"${inputs.self}/modules"
{
networking.hostName = "onlyoffice";
services.vm_onlyoffice = {
enable = true;
pgsql_ip = pgsql_host;
};
}
];
};
template = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };