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

26 lines
392 B
Nix
Raw Normal View History

2025-01-31 11:00:29 +00:00
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.nixosModules.thunar.enable = mkEnableOption "Enable thunar";
2025-01-31 11:00:29 +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 ];
};
}