diff options
Diffstat (limited to 'modules/thunar')
| -rw-r--r-- | modules/thunar/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/thunar/default.nix b/modules/thunar/default.nix new file mode 100644 index 0000000..0caaabf --- /dev/null +++ b/modules/thunar/default.nix @@ -0,0 +1,24 @@ +{ config, pkgs, ... }: +{ + services = { + gvfs.enable = true; + # TODO: Check if I need these + # udisks2.enable = true; + # devmon.enable = true; + tumbler.enable = true; + }; + + programs = { + thunar = { + enable = true; + + plugins = with pkgs.xfce; [ + thunar-archive-plugin + thunar-media-tags-plugin + thunar-volman + ]; + }; + + file-roller.enable = true; + }; +} |
