Android : Fix styles.
This commit is contained in:
parent
17d69bd019
commit
05de0d2b60
11
flake.nix
11
flake.nix
|
@ -109,10 +109,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Styles.
|
# Styles.
|
||||||
style = { config, ... }: {
|
style = { config , ... }: {
|
||||||
color_bg = config.lib.stylix.colors.base00 ? "ffffff";
|
color_bg = config.lib.stylix.colors.base00;
|
||||||
color_fg = "000000";
|
color_fg = "000000";
|
||||||
};
|
};
|
||||||
|
defaultStyle = {
|
||||||
|
lib.stylix.colors = {
|
||||||
|
base00 = "ffffff";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Wallpaper.
|
# Wallpaper.
|
||||||
wallpaper = { pkgs, ... }: let
|
wallpaper = { pkgs, ... }: let
|
||||||
|
@ -285,7 +290,7 @@
|
||||||
const = self.nixosModules.const;
|
const = self.nixosModules.const;
|
||||||
flake = self;
|
flake = self;
|
||||||
inputs = inputs;
|
inputs = inputs;
|
||||||
# style = self.style { config = config; };
|
style = self.style { config = self.defaultStyle; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue