19 lines
349 B
Nix
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}
|
|
'';
|
|
};
|
|
}
|