From 104e49dbf9e976e267da59ffe1f43bbb7d270b6a Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Tue, 25 Mar 2025 22:55:47 +0100 Subject: [PATCH] Added: Thunar File Manager --- home/hyprland/default.nix | 3 ++- home/hyprland/fileManager.nix | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 home/hyprland/fileManager.nix diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index cead570..1796b56 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -3,13 +3,14 @@ let package = pkgs.hyprland; super = "SUPER"; terminal = "kitty"; - fileManager = "dolphin"; + fileManager = "thunar"; menu = "~/.config/rofi/launchers/type-3/launcher.sh"; power = "~/.config/rofi/powermenu/type-6/powermenu.sh"; in { imports = [ ./kitty.nix # Terminal + ./fileManager.nix ../waybar # Status Bar ../rofi # App Launcher ]; diff --git a/home/hyprland/fileManager.nix b/home/hyprland/fileManager.nix new file mode 100644 index 0000000..ae84dd3 --- /dev/null +++ b/home/hyprland/fileManager.nix @@ -0,0 +1,13 @@ +{ pkgs, ...}: { + programs.thunar = { + enable = true; + plugins = with pkgs.xfce; [ + thunar-archive-plugin + thunar-volman + ]; + }; + + programs.xfconf.enable = true; + programs.gvfs.enable = true; + programs.tumbler.enable = true; +}