Android : Fix styles.

This commit is contained in:
Dmitry Voronin 2024-04-04 12:34:23 +03:00
parent 17d69bd019
commit 05de0d2b60

View file

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