feat(blackbox): add catppuccin theme

This commit is contained in:
2026-04-26 21:35:25 +02:00
parent 4ad37b406d
commit d8ba87b574
2 changed files with 22 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ pkgs, ... }:
let
catppuccinTheme = pkgs.stdenv.mkDerivation {
name = "catppuccin-theme";
src = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "tilix";
rev = "f29239686d1309b9eaaf03447156ae16427a3ef7";
hash = "sha256-d/HOSQ4F06s2aMojS9lK8Vbx8AJXdlxuK88W9h9q0kw=";
};
installPhase = ''
cp themes/catppuccin-mocha.json $out
'';
};
in
{
home.file."blackbox-catppuccin" = {
source = catppuccinTheme;
target = ".local/share/blackbox/schemes/catppuccin-mocha.json";
};
}
+1
View File
@@ -6,6 +6,7 @@
}: }:
{ {
imports = [ imports = [
./blackbox.nix
./fish.nix ./fish.nix
./git.nix ./git.nix
./kitty.nix ./kitty.nix