From 8559bd48f7b8d1c76370d614b980cae0e9ee9207 Mon Sep 17 00:00:00 2001
From: Myned <dev@bjork.tech>
Date: Wed, 26 Feb 2025 21:44:40 -0600
Subject: [PATCH] stylix: prep for enable

Signed-off-by: Myned <dev@bjork.tech>
---
 options/custom/settings/default.nix | 2 +-
 options/custom/settings/stylix.nix  | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/options/custom/settings/default.nix b/options/custom/settings/default.nix
index 0dbadd5..032de9e 100644
--- a/options/custom/settings/default.nix
+++ b/options/custom/settings/default.nix
@@ -21,7 +21,7 @@ with lib; {
       gtk.enable = true;
       icons.enable = true;
       qt.enable = true;
-      #// stylix.enable = true;
+      stylix.enable = true;
       xdg.enable = true;
     })
 
diff --git a/options/custom/settings/stylix.nix b/options/custom/settings/stylix.nix
index 553ef64..e5b2630 100644
--- a/options/custom/settings/stylix.nix
+++ b/options/custom/settings/stylix.nix
@@ -1,6 +1,7 @@
 {
   config,
   lib,
+  pkgs,
   ...
 }:
 with lib; let
@@ -11,9 +12,14 @@ in {
   };
 
   config = mkIf cfg.enable {
+    # TODO: Use stylix for theming
     # https://stylix.danth.me/
     stylix = {
-      enable = true;
+      # BUG: Assertion failure, set to true when merged
+      # https://github.com/danth/stylix/pull/912
+      enable = false;
+
+      base16Scheme = "${pkgs.base16-schemes}/share/themes/solarized-dark.yaml";
     };
   };
 }