{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.thunar;
in
meta = {
maintainers = lib.teams.xfce.members;
};
options = {
programs.thunar = {
enable = lib.mkEnableOption "Thunar, the Xfce file manager";
plugins = lib.mkOption {
default = [ ];
type = lib.types.listOf lib.types.package;
description = "List of thunar plugins to install.";
example = lib.literalExpression "with pkgs.xfce; [ thunar-archive-plugin thunar-volman ]";
config = lib.mkIf cfg.enable (
package = pkgs.xfce.thunar.override { thunarPlugins = cfg.plugins; };
environment.systemPackages = [
package
];
services.dbus.packages = [
systemd.packages = [
programs.xfconf.enable = true;
}
);