2026-02-04 10:29:55 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2026-02-09 21:51:26 +02:00
|
|
|
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>
|
|
|
|
|
'';
|
|
|
|
|
|
2026-02-04 10:29:55 +02:00
|
|
|
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;
|
|
|
|
|
}
|