summaryrefslogtreecommitdiff
path: root/hermes
diff options
context:
space:
mode:
Diffstat (limited to 'hermes')
-rw-r--r--hermes/nixos/gui/xfce.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/hermes/nixos/gui/xfce.nix b/hermes/nixos/gui/xfce.nix
index 8c3ab8f..d357c83 100644
--- a/hermes/nixos/gui/xfce.nix
+++ b/hermes/nixos/gui/xfce.nix
@@ -8,6 +8,18 @@
desktopManager.xfce.enable = true;
};
+ # File manager
+ programs.thunar = {
+ enable = true;
+
+ plugins = with pkgs; [
+ thunar-archive-plugin
+ thunar-media-tags-plugin
+ thunar-vcs-plugin
+ thunar-volman
+ ];
+ };
+
# XDG
xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
@@ -18,12 +30,9 @@
xarchiver
xfce4-docklike-plugin xfce4-whiskermenu-plugin
- thunar-archive-plugin thunar-media-tags-plugin thunar-vcs-plugin thunar-volman
];
# Excluded
- environment.xfce.excludePackages = with pkgs; [
- parole
- ];
+ environment.xfce.excludePackages = with pkgs; [ parole ];
};
}