aboutsummaryrefslogtreecommitdiff
path: root/gui/pcmanfm.nix
blob: 00a13937f3a417abef8861d69527f9955d1ca5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, ... }:

{
  home = {
    packages = with pkgs; [
      pcmanfm gvfs lxmenu-data shared_mime_info
      veracrypt
    ];

    sessionVariables = {
      # required to enable auto-mounting in pcmanfm
      GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
      # use GTK theme in libreoffice
      SAL_USE_VCLPLUGIN = "gtk";
    };
  };
}