Files
niri/hm/conf/alacritty.nix
2025-11-24 17:47:49 +09:00

18 lines
316 B
Nix

{...}:
{
home.file."alacritty.alacritty.toml" = {
text = ''
[general]
import = ["dank-theme.toml"]
[window]
padding = { x = 10, y = 10 }
[font]
normal = { family = 'JetBrainsMono Nerd Font', style = 'Regular' }
size = 11
offset = { x = 1, y = 2}
'';
}
}