changed alacritty toml so fastfetch reads its toml correctly
This commit is contained in:
parent
72b61631ce
commit
72767efe1f
3 changed files with 21 additions and 17 deletions
12
homes/modules/programs/alacritty/alacritty.toml
Normal file
12
homes/modules/programs/alacritty/alacritty.toml
Normal 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
|
||||
9
homes/modules/programs/alacritty/default.nix
Normal file
9
homes/modules/programs/alacritty/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ upkgs, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
package = upkgs.alacritty-graphics;
|
||||
|
||||
settings = import ./alacritty.toml;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue