mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
14 lines
405 B
Nix
14 lines
405 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
base16 = {
|
|
shell.enable = true;
|
|
schemes = [ "atelier.atelier-cave" "atelier.atelier-cave-light" ];
|
|
alias.light = "atelier.atelier-cave-light";
|
|
alias.dark = "atelier.atelier-cave";
|
|
};
|
|
|
|
|
|
kw.hexColors = lib.mapAttrs' (k: v: lib.nameValuePair k "#${v.hex.rgb}")
|
|
(lib.filterAttrs (n: _: lib.hasInfix "base" n) config.lib.arc.base16.schemeForAlias.default);
|
|
}
|