Files
niri/hm/conf/alacritty.nix
2025-11-24 20:36:14 +09:00

19 lines
349 B
Nix

{...}:
{
home.file.alacritty = {
target = ".config/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}
'';
};
}