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