mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
27 lines
634 B
Nix
27 lines
634 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: let
|
|
inherit (inputs.base16-data.lib.base16-data) schemeSources;
|
|
in {
|
|
base16 = {
|
|
vim = {
|
|
enable = false;
|
|
template = inputs.base16-data.legacyPackages.${pkgs.system}.base16-templates.vim.withTemplateData;
|
|
};
|
|
shell.enable = true;
|
|
schemes = {
|
|
light = {
|
|
schemeData = schemeSources.tinted.schemes.catppuccin-latte;
|
|
ansi.palette.background.alpha = "d000";
|
|
};
|
|
dark = {
|
|
schemeData = schemeSources.tinted.schemes.catppuccin-mocha;
|
|
ansi.palette.background.alpha = "d000";
|
|
};
|
|
};
|
|
defaultSchemeName = "dark";
|
|
};
|
|
}
|