Files
nix-config/modules/home/programs/onlyoffice/default.nix
mjallen18 31202f8b0e upd
2025-12-11 17:41:05 -06:00

20 lines
311 B
Nix

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