diff --git a/systems/modules/stylix.nix b/systems/modules/stylix.nix index 9da1d2b..73da662 100644 --- a/systems/modules/stylix.nix +++ b/systems/modules/stylix.nix @@ -2,7 +2,7 @@ { imports = [ inputs.stylix.nixosModules.stylix - ./themes/black-metal.nix + ./themes/bright.nix ./fonts/sauce-code-pro.nix ]; stylix.enable = true; diff --git a/systems/modules/themes/bright.nix b/systems/modules/themes/bright.nix new file mode 100644 index 0000000..11fff73 --- /dev/null +++ b/systems/modules/themes/bright.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/bright.yaml"; +}