mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-13 15:57:47 +00:00
20 lines
491 B
Nix
20 lines
491 B
Nix
{
|
|
programs.onlyoffice = {
|
|
enable = true;
|
|
settings = {
|
|
UITheme = "theme-contrast-dark";
|
|
editorWindowMode = false;
|
|
forcedRtl = false;
|
|
locale = "es-ES";
|
|
maximized = true;
|
|
position = "@Rect(100 56 1266 668)";
|
|
titlebar = "custom";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/onlyoffice/DesktopEditors.conf
|
|
assertFileContent home-files/.config/onlyoffice/DesktopEditors.conf \
|
|
${./example-config.conf}
|
|
'';
|
|
}
|