mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
feat(blackbox): add catppuccin theme
This commit is contained in:
@@ -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";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -6,6 +6,7 @@
|
|||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./blackbox.nix
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
|
|||||||
Reference in New Issue
Block a user