depot/nixos/modules/programs/thunar.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00: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;
}
);
}