Thunar doesn't show archive plugin

Hey!
I’m having an issue with thunar-archive-plugin.
I have installed file-roller and thunar-archive-plugin,

nix-store --query --requisites /run/current-system | cut -d- -f2- | grep -E ‘thunar-archive-plugin|file-roll’
file-roller-3.28.1
thunar-archive-plugin-0.3.1

but it semms doesnt work, doesn’t display ‘Extract Here’ and ‘Extract To …’
Screenshot_2018-11-22_22-57-14

Thunar needs to be installed as (pkgs.xfce.thunar.override { thunarPlugins = [pkgs.xfce.thunar-archive-plugin]; }). If you use XFCE, you can also set services.xserver.desktopManager.xfce.thunarPlugins option in your configuration.nix.

1 Like
  services.xserver = {
    videoDrivers = [ "nvidia" ];
    enable = true;
    layout = "us";
    displayManager.lightdm.enable = true;
    desktopManager = {
      xfce = {
        enable = true;
        thunarPlugins = [ pkgs.xfce.thunar-archive-plugin ];
      };
      xterm.enable = false;
    };
  };

this is my config in the configuration.nix. still not work

It looks fine to me; I would open an issue.

I have a very similar setup and it works fine for me with NixOS-19.03.