infra/nix/home-manager/programs/libreoffice.nix
2022-10-31 11:05:05 +01:00

10 lines
185 B
Nix

{ pkgs, ... }:
{
home.sessionVariables = {
# Workaround for Libreoffice to force gtk3
SAL_USE_VCLPLUGIN = "gtk3";
};
home.packages = with pkgs; [ libreoffice-fresh ];
}