ZenQy
November 22, 2018, 3:49pm
1
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 …’
jtojnar
November 22, 2018, 7:55pm
2
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
ZenQy
November 23, 2018, 11:54am
3
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
jtojnar
November 30, 2018, 7:15pm
4
It looks fine to me; I would open an issue.
pSub
April 20, 2019, 9:40am
5
I have a very similar setup and it works fine for me with NixOS-19.03.