changed alacritty toml so fastfetch reads its toml correctly

This commit is contained in:
foxora 2026-02-28 17:35:39 +00:00
parent 72b61631ce
commit 72767efe1f
3 changed files with 21 additions and 17 deletions

View file

@ -294,23 +294,6 @@
};
};
alacritty = {
enable = true;
package = upkgs.alacritty-graphics;
settings = {
general.import = [
"theme.toml"
];
font = {
normal.family = "DepartureMono Nerd Font Mono";
size = 10;
};
scrolling.history = 100000;
mouse.hide_when_typing = true;
};
};
zen-browser = {
enable = true;
package = inputs.zen.packages.${system}.twilight;

View file

@ -0,0 +1,12 @@
[font]
size = 10
normal = { family = "DepartureMono Nerd Font Mono", style = "Regular" }
[general]
import = ["theme.toml"]
[mouse]
hide_when_typing = true
[scrolling]
history = 100000

View file

@ -0,0 +1,9 @@
{ upkgs, ... }:
{
programs.alacritty = {
enable = true;
package = upkgs.alacritty-graphics;
settings = import ./alacritty.toml;
};
}