feat(koishi): new laptop!!!

This commit is contained in:
Kat Inskip 2024-03-09 14:54:11 -08:00
parent 8820db6792
commit 26ad2434b0
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
36 changed files with 1403 additions and 698 deletions

View file

@ -23,7 +23,7 @@ in {
// {
term_font = "Iosevka";
font = "Iosevka";
font_size = "14px";
font_size = "12px";
};
};
css_style = mkOption {
@ -34,10 +34,11 @@ in {
};
config = mkIf (cfg.schemes != {}) {
base16 = {
palette = set.fromList (set.mapToValues (k: v:
tuple.tuple2
k
"#${v.hex}"
palette = set.fromList (set.mapToValues (
k: v:
tuple.tuple2
k
"#${v.hex}"
)
(set.filter (n: _: string.hasPrefix "base" n)
cfg.defaultScheme));