summaryrefslogtreecommitdiff
path: root/modules/nixosModules/desktop/thunar.nix
blob: bef8fa6136eee2376ee2540ec5c403cdea763c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  flake.nixosModules.thunar = {pkgs, ...}: {
    programs.thunar = {
      enable = true;

      plugins = with pkgs; [
        thunar-archive-plugin
        thunar-media-tags-plugin
        thunar-volman
      ];
    };

    programs.xfconf.enable = true;
    services.gvfs.enable = true;
    services.tumbler.enable = true;
  };
}