mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
43 lines
866 B
Nix
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;
|
|
}
|
|
);
|
|
}
|