dotfiles/nix/modules/nixos/features/desktop/thunar.nix

26 lines
400 B
Nix
Raw Normal View History

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