nanuqsaurus/modules/desktop/file-manager.nix
2026-02-09 21:51:26 +02:00

27 lines
666 B
Nix

{ pkgs, ... }:
{
environment.etc."xdg/xfce4/xfconf/xfce-perchannel-xml/exo.xml".text = ''
<?xml version="1.0" encoding="UTF-8"?>
<channel name="exo" version="1.0">
<property name="helpers" type="empty">
<property name="TerminalEmulator" type="string" value="${pkgs.ptyxis}/bin/ptyxis"/>
</property>
</channel>
'';
services.gvfs.enable = true;
services.tumbler.enable = true;
programs.thunar = {
enable = true;
plugins = [
pkgs.xfce.thunar-archive-plugin
pkgs.xfce.thunar-media-tags-plugin
pkgs.xfce.thunar-vcs-plugin
pkgs.xfce.thunar-volman
];
};
programs.xfconf.enable = true;
}