new theme

This commit is contained in:
Kopatz
2025-03-16 15:13:58 +01:00
parent 7d3f9b37a0
commit 4d4f5c2a24
12 changed files with 92 additions and 67 deletions

View File

@@ -1,5 +1,6 @@
{ osConfig, pkgs, config, lib, ... }:
let cfg = osConfig.custom.graphical.stylix;
base16 = config.stylix.base16Scheme;
in {
config = lib.mkIf cfg.enable {
stylix = {
@@ -7,13 +8,17 @@ in {
targets = {
hyprlock.enable = false;
hyprland.enable = false;
waybar.enable = false;
waybar = {
enable = true;
addCss = false;
};
gtk.flatpakSupport.enable = true; #edits ~/.themes/adw-gtk3
};
};
wayland.windowManager.hyprland.settings.env = lib.mkIf osConfig.custom.graphical.hyprland.enable [
"GTK_THEME,adw-gtk3"
];
wayland.windowManager.hyprland.settings = lib.mkIf osConfig.custom.graphical.hyprland.enable {
env = ["GTK_THEME,adw-gtk3"];
general."col.active_border" = lib.mkForce "rgb(${base16.base07}) rgb(${base16.base04}) 45deg";
};
};
}