From 2b0c852e997c819e45b9290d42633881d43254b7 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Sun, 19 Jul 2026 18:34:37 +0200 Subject: [PATCH] feat: add themes derivation --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 7952e14..fd586ca 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,14 @@ cp -r ./* $out/ ''; }; + packages.themes = pkgs.stdenv.mkDerivation { + name = "themes"; + phases = [ "installPhase" ]; + installPhase = '' + mkdir -p $out + cp ${helix}/runtime/themes/*.toml $out/ + ''; + }; packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: { pname = "karnaugh"; version = "0.1.5";