From f94f6e63b1a2cb62fd8ad71347000eaed0e5116d Mon Sep 17 00:00:00 2001 From: Cookiez Date: Tue, 2 Jun 2026 12:24:39 +0200 Subject: [PATCH] Enable qt support in stylix, cleaned up comments and made stylix manage niri colors --- modules/stylix/default.nix | 12 +++++++++--- modules/stylix/home.nix | 6 +++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/modules/stylix/default.nix b/modules/stylix/default.nix index df25d84..5a35e8a 100644 --- a/modules/stylix/default.nix +++ b/modules/stylix/default.nix @@ -15,9 +15,15 @@ stylix = { enable = true; autoEnable = false; #So I can choose my programs it targets myself! - #image = ../../other/wallpaper2.png; - #autoEnable = true; #Auto generate theme based on wallpaper + #image = "${inputs.cookiez-assets}/wallpapers/beach-forest.png"; + #polarity = "dark"; # "dark" or "light" base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml"; + #override = { + # base05 = "e0e0e0"; # default text — light grey (no # prefix!) + # base04 = "b0b0b0"; # secondary/muted text + # base06 = "f5f5f5"; # lighter text variant + #}; + opacity = { desktop = 0.5; terminal = 0.9; @@ -43,7 +49,7 @@ plymouth.logoAnimated = true; console.enable = true; #Default console without desktop environment! (NOT KITTY!) grub.enable = false; - #qt.enable = false; + qt.enable = true; }; }; } diff --git a/modules/stylix/home.nix b/modules/stylix/home.nix index ef99ade..39088e7 100644 --- a/modules/stylix/home.nix +++ b/modules/stylix/home.nix @@ -5,6 +5,7 @@ ... }: { imports = [ + inputs.niri.homeModules.stylix ]; services = { @@ -16,10 +17,9 @@ #firefox = { # enable = true; # colorTheme.enable = true; - # profileNames = [ "${username}" ]; + # profileNames = ["${username}"]; #}; - qt.enable = false; - qt.platform = "kde"; + niri.enable = true; #kde.enable = false; }; };