19 lines
363 B
Nix
19 lines
363 B
Nix
{ config, ... }: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
shell = {
|
|
program = config.programs.zellij.package + "/bin/zellij";
|
|
args = [
|
|
"attach"
|
|
"-c"
|
|
];
|
|
};
|
|
font.size = 10.0;
|
|
window = {
|
|
resize_increments = true;
|
|
dynamic_padding = true;
|
|
};
|
|
};
|
|
};
|
|
}
|