infra/nix/home-manager/programs/libreoffice.nix

11 lines
185 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ pkgs, ... }:
{
home.sessionVariables = {
# Workaround for Libreoffice to force gtk3
SAL_USE_VCLPLUGIN = "gtk3";
};
2022-10-31 11:04:38 +01:00
home.packages = with pkgs; [ libreoffice-fresh ];
}