depot/third_party/nixpkgs/nixos/modules/programs/thunar.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

43 lines
866 B
Nix

{ 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 (
let package = pkgs.xfce.thunar.override { thunarPlugins = cfg.plugins; };
in {
environment.systemPackages = [
package
];
services.dbus.packages = [
package
];
systemd.packages = [
package
];
programs.xfconf.enable = true;
}
);
}