nix/modules/system/programs/thunar.nix
2024-03-16 20:45:29 +01:00

16 lines
257 B
Nix

{ pkgs, ... }:
{
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true;
services.tumbler.enable = true;
programs.file-roller.enable = true;
}