mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
19 lines
411 B
Nix
19 lines
411 B
Nix
{lib, ...}: let
|
|
inherit (lib.modules) mkMerge;
|
|
in {
|
|
base16 = {
|
|
vim.enable = false;
|
|
shell.enable = true;
|
|
schemes = mkMerge [
|
|
{
|
|
light = "atelier.atelier-cave-light";
|
|
dark = "atelier.atelier-cave";
|
|
}
|
|
{
|
|
dark.ansi.palette.background.alpha = "ee00";
|
|
light.ansi.palette.background.alpha = "d000";
|
|
}
|
|
];
|
|
defaultSchemeName = "light";
|
|
};
|
|
}
|