From 3ba90df61599622c7432c012d8aaea523b7a5a9a Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 5 Nov 2022 17:15:46 +0100 Subject: [PATCH] Switch to Thunar file manager --- hm_modules/sxhkd.nix | 7 +++++-- hm_modules/thunar.nix | 11 ++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/hm_modules/sxhkd.nix b/hm_modules/sxhkd.nix index fd89213..4905a55 100644 --- a/hm_modules/sxhkd.nix +++ b/hm_modules/sxhkd.nix @@ -1,5 +1,8 @@ { pkgs, ... }: { - imports = [ ./nautilus.nix ]; + imports = [ + # ./nautilus.nix + ./thunar.nix + ]; home.packages = with pkgs; [ bc gnome.gnome-screenshot @@ -17,7 +20,7 @@ let primaryTerminal = "kitty"; secondaryTerminal = "terminator"; - fileManager = "nautilus"; + fileManager = "thunar"; emojiChooser = "rofimoji --skin-tone light -a copy"; yad = "${pkgs.yad}/bin/yad"; in diff --git a/hm_modules/thunar.nix b/hm_modules/thunar.nix index 59166a0..ad98176 100644 --- a/hm_modules/thunar.nix +++ b/hm_modules/thunar.nix @@ -1 +1,10 @@ -{ pkgs, ... }: { home.packages = with pkgs.xfce; [ thunar tumbler xfconf ]; } +{ pkgs, ... }: { + home.packages = with pkgs.xfce; [ + thunar + thunar-archive-plugin + thunar-media-tags-plugin + thunar-volman + tumbler + xfconf + ]; +}