1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-13 15:57:47 +00:00
home-manager/tests/modules/programs/onlyoffice/example-config.nix
2025-03-20 11:34:43 -05:00

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