refactor(nixos): extract Home Manager modules
This commit is contained in:
parent
2968f5396d
commit
ec23fb1431
5 changed files with 110 additions and 101 deletions
28
system/nixos/home-manager/modules/alacritty.nix
Normal file
28
system/nixos/home-manager/modules/alacritty.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
window.opacity = 0.9;
|
||||
|
||||
window.padding = {
|
||||
x = 15;
|
||||
y = 15;
|
||||
};
|
||||
|
||||
font = {
|
||||
size = 16.0;
|
||||
|
||||
bold.style = "Regular";
|
||||
bolditalic.style = "Regular";
|
||||
italic.style = "Regular";
|
||||
normal.family = "AnonymicePro Nerd Font Mono";
|
||||
|
||||
offset.y = 12;
|
||||
glyph_offset.y = 6;
|
||||
};
|
||||
|
||||
shell = { program = "zsh"; };
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue