feat(hyprland): init

This commit is contained in:
Kat Inskip 2024-03-07 17:05:22 -08:00
parent 8872b78a07
commit 8820db6792
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
23 changed files with 957 additions and 18 deletions

View file

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