mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
17 lines
368 B
Nix
17 lines
368 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
kw.theme.enable = true;
|
|
|
|
base16 = {
|
|
shell.enable = true;
|
|
schemes = lib.mkMerge [ {
|
|
light = "atelier.atelier-cave-light";
|
|
dark = "atelier.atelier-cave";
|
|
} (lib.mkIf (true == false) {
|
|
dark.ansi.palette.background.alpha = "ee00";
|
|
light.ansi.palette.background.alpha = "d000";
|
|
}) ];
|
|
defaultSchemeName = "dark";
|
|
};
|
|
}
|