Configure collabora host

This commit is contained in:
pazpi 2026-02-04 13:40:14 +01:00
parent 00c636a7c5
commit 58f883b09e
5 changed files with 47 additions and 38 deletions

View file

@ -0,0 +1,30 @@
{
config,
pkgs,
lib,
...
}:
let
p = import ../parameters.nix;
in
{
my = {
utils = {
commons.enable = true;
lxc-standard.enable = true;
};
services.collabora-online = {
enable = true;
};
virtualisation.proxmox.enable = true;
};
# Extra packages
environment.systemPackages = with pkgs; [ ];
system.stateVersion = "24.11";
}