From 05de0d2b608068960eed806bb62bc7a883a77ec3 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Thu, 4 Apr 2024 12:34:23 +0300 Subject: [PATCH] Android : Fix styles. --- flake.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 734a7f1a..2b1859c5 100644 --- a/flake.nix +++ b/flake.nix @@ -109,10 +109,15 @@ }; # Styles. - style = { config, ... }: { - color_bg = config.lib.stylix.colors.base00 ? "ffffff"; + style = { config , ... }: { + color_bg = config.lib.stylix.colors.base00; color_fg = "000000"; }; + defaultStyle = { + lib.stylix.colors = { + base00 = "ffffff"; + }; + }; # Wallpaper. wallpaper = { pkgs, ... }: let @@ -285,7 +290,7 @@ const = self.nixosModules.const; flake = self; inputs = inputs; - # style = self.style { config = config; }; + style = self.style { config = self.defaultStyle; }; }; }; };