Rename system to lib

This commit is contained in:
Oliver Davies 2024-02-29 08:24:01 +00:00
parent cf4c9710a2
commit addad268e5
18 changed files with 2 additions and 2 deletions
lib/nixos/home-manager/modules

View file

@ -0,0 +1,27 @@
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.9;
window.padding = {
x = 15;
y = 15;
};
font = {
size = 12.0;
bold.style = "Regular";
normal.family = "GeistMono Nerd Font Mono";
# fc-list : family | sort | grep "Nerd Font"
offset.y = 12;
glyph_offset.y = 6;
};
shell = {program = "zsh";};
};
};
}