Add project to repo

This commit is contained in:
panotaka
2023-11-21 00:39:36 -04:00
parent 26064838f8
commit ce7c15186e
31 changed files with 1315 additions and 0 deletions

29
home/shell/terminals.nix Normal file
View File

@@ -0,0 +1,29 @@
{ pkgs, ... }:
# terminals
let
font = "JetBrainsMono Nerd Font";
in
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.95;
window.dynamic_padding = true;
window.padding = {
x = 5;
y = 5;
};
scrolling.history = 10000;
font = {
normal.family = font;
bold.family = font;
italic.family = font;
size = 11;
};
};
};
}