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

10 lines
266 B
Nix

{ 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