feat(stylix): add bright theme

This commit is contained in:
Mohammad Rafiq 2025-03-22 02:09:53 +08:00
parent a350e4c28c
commit bc6d3c88e1
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
./themes/black-metal.nix ./themes/bright.nix
./fonts/sauce-code-pro.nix ./fonts/sauce-code-pro.nix
]; ];
stylix.enable = true; stylix.enable = true;

View file

@ -0,0 +1,4 @@
{ pkgs, ... }:
{
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/bright.yaml";
}