desktop is building I guess, idk, need to start commiting stuff eventually lmao
This commit is contained in:
14
modules/home/programs/onlyoffice/default.nix
Normal file
14
modules/home/programs/onlyoffice/default.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ lib, system, ... }:
|
||||
let
|
||||
isArm = builtins.match "aarch64*" system != null;
|
||||
in
|
||||
{
|
||||
programs.onlyoffice = {
|
||||
enable = lib.mkDefault (!isArm);
|
||||
settings = {
|
||||
UITheme = "theme-contrast-dark";
|
||||
forcedRtl = false;
|
||||
maximized = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user