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"; }; }; }