feat: nixos configs & docs

This commit is contained in:
Ryan Yin
2023-04-23 01:30:45 +08:00
committed by ryan4yin
parent 13efbb259e
commit 699f541539
74 changed files with 16056 additions and 1 deletions
+29
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;
};
};
};
}