Files
nix-config/modules/home/programs/onlyoffice/default.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

20 lines
311 B
Nix
Executable File

{
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;
};
};
}