refactor: home-manager to home/autumn

This commit is contained in:
autumn-the-kitty-cat
2025-12-01 17:54:36 -05:00
parent c76b681700
commit 9b216cf609
43 changed files with 45 additions and 302 deletions
+37
View File
@@ -0,0 +1,37 @@
{config, ...}:
{
programs.zathura = {
enable = true;
options = with config.stylix.base16Scheme.palette; {
font = "${config.stylix.fonts.serif.name} 14";
default-fg = "#${base05}";
default-bg = "#${base00}";
completion-bg = "#${base02}";
completion-fg = "#${base05}";
completion-highlight-bg = "#${base04}";
completion-highlight-fg = "#${base05}";
completion-group-bg = "#${base02}";
completion-group-fg = "#${base0E}";
statusbar-fg = "#${base05}";
statusbar-bg = "#${base02}";
notification-bg = "#${base02}";
notification-fg = "#${base05}";
notification-error-bg = "#${base02}";
notification-error-fg = "#${base08}";
notification-warning-bg = "#${base02}";
notification-warning-fg = "#${base09}";
inputbar-fg = "#${base05}";
inputbar-bg = "#${base02}";
index-fg = "#${base05}";
index-bg = "#${base00}";
index-active-fg = "#${base05}";
index-active-bg = "#${base02}";
render-loading-bg = "#${base00}";
render-loading-fg = "#${base05}";
recolor-lightcolor = "#${base00}";
recolor-darkcolor = "#${base05}";
recolor = "true";
};
};
}