diff --git a/modules/nixos/desktop/thunar.nix b/modules/nixos/desktop/thunar.nix new file mode 100644 index 0000000..b3eebdc --- /dev/null +++ b/modules/nixos/desktop/thunar.nix @@ -0,0 +1,15 @@ +{ + flake.modules.nixos.desktop = + { pkgs, ... }: + { + services.gvfs.enable = true; + + programs.thunar = { + enable = true; + plugins = with pkgs; [ + thunar-archive-plugin + thunar-volman + ]; + }; + }; +}