5 lines
105 B
Nix
5 lines
105 B
Nix
{ pkgs, ... }: {
|
|
programs.onlyoffice =
|
|
pkgs.lib.mkIf (!pkgs.stdenv.isDarwin) { enable = true; };
|
|
}
|