fix(colors): use basix instead of downloading jsons

This commit is contained in:
Artur Manuel 2025-02-23 18:07:48 +00:00
commit 73b9963bbc
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg
3 changed files with 7 additions and 4 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: let
{
pkgs,
colors,
...
}: let
inherit (pkgs) vimPlugins;
in {
config.vim = {
@ -14,7 +18,7 @@ in {
theme = {
name = "mini-base16";
enable = true;
base16-colors = builtins.fromJSON (builtins.readFile ./everforest.json);
base16-colors = colors;
};
terminal.toggleterm = {
enable = true;