nix-config/modules/nixos/desktop/thunar.nix
Oliver Davies 54b43e4203
All checks were successful
/ check (push) Successful in 1m21s
Remove features
2025-05-03 16:50:27 +01:00

27 lines
380 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.desktop.thunar;
in
{
options.desktop.thunar.enable = mkEnableOption "Enable thunar";
config = mkIf cfg.enable {
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
];
};
environment.systemPackages = with pkgs; [ xfce.tumbler ];
};
}