feat: redesign the project structure

This commit is contained in:
ryan4yin
2023-05-27 16:10:25 +08:00
parent ab11958597
commit f971ec030d
124 changed files with 711 additions and 540 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;
};
};
};
}