Files
nix-config/modules/home/programs/onlyoffice/default.nix
mjallen18 ee486f52bb fixes
2025-10-22 19:10:44 -05:00

15 lines
311 B
Nix

{ lib, system, hasDestopEnvironment, ... }:
let
isArm = builtins.match "aarch64*" system != null;
in
{
programs.onlyoffice = {
enable = lib.mkDefault (!isArm && hasDestopEnvironment);
settings = {
UITheme = "theme-contrast-dark";
forcedRtl = false;
maximized = true;
};
};
}