alacritty
This commit is contained in:
parent
ab61c51afe
commit
e4823110b1
2 changed files with 28 additions and 0 deletions
1
home.nix
1
home.nix
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
./home/modules/git.nix
|
||||
./home/modules/fish.nix
|
||||
./home/modules/alacritty.nix
|
||||
];
|
||||
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
|
|
27
home/modules/alacritty.nix
Normal file
27
home/modules/alacritty.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
shell = "${pkgs.fish}/bin/fish";
|
||||
window = {
|
||||
opacity = 0.98;
|
||||
};
|
||||
font = {
|
||||
normal = {
|
||||
family = "JetBrainsMono Nerd Font";
|
||||
style = "Regular";
|
||||
};
|
||||
bold = {
|
||||
family = "JetBrainsMono Nerd Font";
|
||||
style = "Bold";
|
||||
};
|
||||
italic = {
|
||||
family = "JetBrainsMono Nerd Font";
|
||||
style = "Italic";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue