nix-home/packages/common/nki-kakoune/themes.nix

10 lines
266 B
Nix
Raw Normal View History

2024-09-28 14:54:39 +00:00
{ writeScriptDir, ... }:
let
themes = [
{ name = "catppuccin-latte"; src = ./themes/catppucin-latte.kak; }
];
themeToColorscheme = name: src: writeScriptDir "share/kak/colors/${name}.kak" (builtins.readFile src);
in
builtins.map themeToColorscheme themes