feat: thunar file manager + gtk theme
This commit is contained in:
parent
0ace52a053
commit
8ae33e9f76
|
@ -7,6 +7,7 @@
|
||||||
./cava
|
./cava
|
||||||
./discord
|
./discord
|
||||||
./dunst
|
./dunst
|
||||||
|
./gtk
|
||||||
./picom
|
./picom
|
||||||
./rofi
|
./rofi
|
||||||
./wezterm
|
./wezterm
|
||||||
|
|
15
home-manager/sajenim/features/desktop/gtk/default.nix
Normal file
15
home-manager/sajenim/features/desktop/gtk/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
|
@ -37,12 +37,18 @@
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
# Android debug bridge: communicate with devices
|
# Android debug bridge: communicate with devices
|
||||||
adb.enable = true;
|
adb.enable = true;
|
||||||
|
# Configuration storage system for xfce
|
||||||
|
xfconf.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure services
|
# Configure services
|
||||||
services = {
|
services = {
|
||||||
# Access smart cards using SCard API
|
# Access smart cards using SCard API
|
||||||
pcscd.enable = true;
|
pcscd.enable = true;
|
||||||
|
# Mount, trash, and other functionalities
|
||||||
|
gvfs.enable = true;
|
||||||
|
# Thumbnail support for images
|
||||||
|
tumbler.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Manage linux containers
|
# Manage linux containers
|
||||||
|
|
Loading…
Reference in a new issue