1
1
Fork 0

stylix: prep for enable

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-02-26 21:44:40 -06:00
parent 4d113f3069
commit 8559bd48f7
Signed by: Myned
GPG key ID: C7224454F7881A34
2 changed files with 8 additions and 2 deletions

View file

@ -21,7 +21,7 @@ with lib; {
gtk.enable = true; gtk.enable = true;
icons.enable = true; icons.enable = true;
qt.enable = true; qt.enable = true;
#// stylix.enable = true; stylix.enable = true;
xdg.enable = true; xdg.enable = true;
}) })

View file

@ -1,6 +1,7 @@
{ {
config, config,
lib, lib,
pkgs,
... ...
}: }:
with lib; let with lib; let
@ -11,9 +12,14 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
# TODO: Use stylix for theming
# https://stylix.danth.me/ # https://stylix.danth.me/
stylix = { 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";
}; };
}; };
} }