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