Android : Fix styles.
This commit is contained in:
parent
17d69bd019
commit
05de0d2b60
|
@ -110,9 +110,14 @@
|
|||
|
||||
# Styles.
|
||||
style = { config , ... }: {
|
||||
color_bg = config.lib.stylix.colors.base00 ? "ffffff";
|
||||
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; };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue