Added: Thunar File Manager
This commit is contained in:
parent
6678bf626e
commit
104e49dbf9
@ -3,13 +3,14 @@ let
|
|||||||
package = pkgs.hyprland;
|
package = pkgs.hyprland;
|
||||||
super = "SUPER";
|
super = "SUPER";
|
||||||
terminal = "kitty";
|
terminal = "kitty";
|
||||||
fileManager = "dolphin";
|
fileManager = "thunar";
|
||||||
menu = "~/.config/rofi/launchers/type-3/launcher.sh";
|
menu = "~/.config/rofi/launchers/type-3/launcher.sh";
|
||||||
power = "~/.config/rofi/powermenu/type-6/powermenu.sh";
|
power = "~/.config/rofi/powermenu/type-6/powermenu.sh";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./kitty.nix # Terminal
|
./kitty.nix # Terminal
|
||||||
|
./fileManager.nix
|
||||||
../waybar # Status Bar
|
../waybar # Status Bar
|
||||||
../rofi # App Launcher
|
../rofi # App Launcher
|
||||||
];
|
];
|
||||||
|
13
home/hyprland/fileManager.nix
Normal file
13
home/hyprland/fileManager.nix
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user