Add onlyoffice service

This commit is contained in:
Théo Barnouin 2025-01-07 13:55:31 +01:00
parent 4bd733777a
commit 5f2bbb255c
4 changed files with 42 additions and 11 deletions

View file

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