mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
12 lines
263 B
Nix
12 lines
263 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
kw.theme.enable = true;
|
|
|
|
base16 = {
|
|
shell.enable = true;
|
|
schemes = [ "atelier.atelier-cave" "atelier.atelier-cave-light" ];
|
|
alias.light = "atelier.atelier-cave-light";
|
|
alias.dark = "atelier.atelier-cave";
|
|
};
|
|
}
|