Working on looks

This commit is contained in:
2026-03-16 07:57:58 +00:00
parent 007762e25e
commit 5481b1fa2f
@@ -1,15 +1,20 @@
{ config, pkgs, user, ... }: { config, pkgs, user, ... }:
{ {
environment.sessionVariables = { environment.sessionVariables = {
XDG_SESSION_TYPE = "wayland"; # Session type XDG_SESSION_TYPE = "wayland";
XDG_CURRENT_DESKTOP = "Hyprland"; # Desktop environment XDG_CURRENT_DESKTOP = "Hyprland";
XCURSOR_SIZE = "24"; # Cursor size XCURSOR_SIZE = "24";
GTK_ENABLE_DARK_MODE=1; GTK_ENABLE_DARK_MODE = "1";
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark"; GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_APPLICATION_PREFER_DARK_THEME = "1"; GTK_ICON_THEME = "Papirus-Dark";
# Add these for Firefox/Zen Browser: # Use this instead of GTK_APPLICATION_PREFER_DARK_THEME for newer GTK apps:
MOZ_ENABLE_WAYLAND = "1"; # If on Wayland GTK_THEME_VARIANT = "dark";
# For Qt apps (if any):
QT_STYLE_OVERRIDE = "gtk2";
# For Zen Browser (Firefox fork):
MOZ_ENABLE_WAYLAND = "1";
GSETTINGS_SCHEMA_DIR = "${pkgs.gsettings-desktop-schemas}/share/glib-2.0/schemas"; GSETTINGS_SCHEMA_DIR = "${pkgs.gsettings-desktop-schemas}/share/glib-2.0/schemas";
}; };
# Add other session-wide variables here (e.g., QT_QPA_PLATFORM, SDL_VIDEODRIVER) # Add other session-wide variables here (e.g., QT_QPA_PLATFORM, SDL_VIDEODRIVER)
} }