Adapting theme.css

This commit is contained in:
2026-03-17 10:43:28 +00:00
parent 227dd1adec
commit 6c75c759cd
9 changed files with 12 additions and 83 deletions
@@ -1,13 +0,0 @@
{ pkgs, flakeRoot, ... }:
{
stylix = {
enable = true;
base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
polarity = "dark";
targets = {
gtk.enable = true;
# kde.enable = false;
# gnome.enable = false;
};
};
}
-6
View File
@@ -1,6 +0,0 @@
{ config, pkgs, ... }:
{
# Stylix GTK target
stylix.targets.gtk.enable = true;
}
@@ -1,20 +0,0 @@
{ config, pkgs, user, ... }:
{
environment.sessionVariables = {
XDG_SESSION_TYPE = "wayland";
XDG_CURRENT_DESKTOP = "Hyprland";
XCURSOR_SIZE = "24";
GTK_ENABLE_DARK_MODE = "1";
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_ICON_THEME = "Papirus-Dark";
# Use this instead of GTK_APPLICATION_PREFER_DARK_THEME for newer GTK apps:
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";
};
# Add other session-wide variables here (e.g., QT_QPA_PLATFORM, SDL_VIDEODRIVER)
}