From a350e4c28c40b4ea0a4b83c8fdfa351e5b5f8c0b Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Mar 2025 02:05:10 +0800 Subject: [PATCH] feat(stylix): add black-metal theme --- systems/modules/stylix.nix | 2 +- systems/modules/themes/black-metal.nix | 4 ++++ systems/modules/themes/catppuccin-mocha.nix | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 systems/modules/themes/black-metal.nix diff --git a/systems/modules/stylix.nix b/systems/modules/stylix.nix index ac5756d..9da1d2b 100644 --- a/systems/modules/stylix.nix +++ b/systems/modules/stylix.nix @@ -2,7 +2,7 @@ { imports = [ inputs.stylix.nixosModules.stylix - ./themes/3024.nix + ./themes/black-metal.nix ./fonts/sauce-code-pro.nix ]; stylix.enable = true; diff --git a/systems/modules/themes/black-metal.nix b/systems/modules/themes/black-metal.nix new file mode 100644 index 0000000..5087897 --- /dev/null +++ b/systems/modules/themes/black-metal.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/black-metal.yaml"; +} diff --git a/systems/modules/themes/catppuccin-mocha.nix b/systems/modules/themes/catppuccin-mocha.nix index 40112fc..c48b4cc 100644 --- a/systems/modules/themes/catppuccin-mocha.nix +++ b/systems/modules/themes/catppuccin-mocha.nix @@ -1,3 +1,4 @@ -{pkgs, ...}: { +{ pkgs, ... }: +{ stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; }