Added: Thunar File Manager

This commit is contained in:
DerGrumpf 2025-03-25 22:55:47 +01:00
parent 6678bf626e
commit 104e49dbf9
2 changed files with 15 additions and 1 deletions

View File

@ -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
];

View File

@ -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;
}