# Thunar is a file explorer { pkgs, config, ... }: let user = config.var.username; in { # ctrl + m to toggle the menubar home.packages = with pkgs; [ xfce.thunar xfce.xfconf xfce.tumbler xfce.thunar-archive-plugin xfce.thunar-volman xfce.thunar-media-tags-plugin p7zip xarchiver ]; gtk = { iconTheme = { name = "WhiteSur"; package = pkgs.whitesur-icon-theme.override { boldPanelIcons = true; alternativeIcons = true; }; }; }; home.sessionVariables = { XDG_ICON_DIR = "${pkgs.whitesur-icon-theme}/share/icons/WhiteSur"; }; # bookmarks for the side pane gtk.gtk3.bookmarks = [ "file:///home/${user}/Downloads Downloads" "file:///home/${user}/Pictures Pictures" "file:///home/${user}/nextcloud Nextcloud" "file:///home/${user}/.config/nixos NixOS" "file:///home/${user}/dev Development" ]; home.file.".config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml".text = '' ''; }