nix/modules/system/programs/thunar.nix
2024-03-09 17:18:36 +01:00

15 lines
219 B
Nix

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