feat: thunar file manager + gtk theme

This commit is contained in:
♥ Minnie ♥ 2025-03-08 09:09:45 +08:00
parent 0ace52a053
commit 8ae33e9f76
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
3 changed files with 22 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./cava
./discord
./dunst
./gtk
./picom
./rofi
./wezterm

View file

@ -0,0 +1,15 @@
{pkgs, ...}: {
gtk = {
enable = true;
theme = {
name = "Gruvbox-Material-Dark";
package = pkgs.unstable.gruvbox-material-gtk-theme;
};
iconTheme.name = "Gruvbox-Material-Dark";
};
home.packages = with pkgs; [
xfce.thunar
xfce.ristretto
];
}