diff options
| author | Leonardo <noreply@leoflo.me> | 2026-01-17 11:03:20 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2026-01-17 11:03:24 +0100 |
| commit | 55daef85ab64636b2f10de22525b857e34ee1cbf (patch) | |
| tree | e3ab3158ad2f68fbdcb40ecca9131e393e15efbb | |
| parent | 9fe6790a6389354bd70262f8fb9925c9e81b31cd (diff) | |
| download | nixos-55daef85ab64636b2f10de22525b857e34ee1cbf.tar.gz nixos-55daef85ab64636b2f10de22525b857e34ee1cbf.zip | |
plugins di thunar fixati
| -rw-r--r-- | hermes/nixos/gui/xfce.nix | 17 |
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 ]; }; } |
