2025-01-31 11:00:29 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2025-03-05 15:09:06 +00:00
|
|
|
options.nixosModules.thunar.enable = mkEnableOption "Enable thunar";
|
2025-01-31 11:00:29 +00:00
|
|
|
|
2025-03-05 15:09:06 +00:00
|
|
|
config = mkIf config.nixosModules.thunar.enable {
|
2025-01-31 11:00:29 +00:00
|
|
|
programs.thunar = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
plugins = with pkgs.xfce; [
|
|
|
|
thunar-archive-plugin
|
|
|
|
thunar-volman
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [ xfce.tumbler ];
|
|
|
|
};
|
|
|
|
}
|