From bc6d3c88e1dc14f076d28123ce647e96317f5acf Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Mar 2025 02:09:53 +0800 Subject: [PATCH] feat(stylix): add bright theme --- systems/modules/stylix.nix | 2 +- systems/modules/themes/bright.nix | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 systems/modules/themes/bright.nix 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"; +}