added thunar config to system hyprland module

This commit is contained in:
Aly Raffauf 2024-03-24 03:36:40 -04:00
parent 34b64c4ed3
commit ce22b312b3
2 changed files with 11 additions and 2 deletions

View file

@ -16,7 +16,6 @@
pavucontrol pavucontrol
playerctl playerctl
udiskie udiskie
xfce.thunar
]; ];
services.mako = { services.mako = {
@ -27,7 +26,6 @@
borderRadius = 10; borderRadius = 10;
defaultTimeout = 10000; defaultTimeout = 10000;
padding = "15"; padding = "15";
}; };
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {

View file

@ -12,5 +12,16 @@
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
programs.xfconf.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
} }