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